/* ==========================================================
Project : Compro Doodle
Module  : Core
File    : reset.css
Version : 1.0.0
Author  : Doodle Engineering
========================================================== */

/* ==========================================================
   BOX MODEL
========================================================== */

*,
*::before,
*::after{

    box-sizing:border-box;

}

/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;

    padding:0;

}

/* ==========================================================
   HTML
========================================================== */

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

/* ==========================================================
   BODY
========================================================== */

body{

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/* ==========================================================
   MEDIA
========================================================== */

img,
picture,
svg,
video,
canvas{

    display:block;

    max-width:100%;

}

/* ==========================================================
   FORM
========================================================== */

button,
input,
textarea,
select{

    font:inherit;

    background:none;

    border:none;

    outline:none;

}

/* ==========================================================
   BUTTON
========================================================== */

button{

    cursor:pointer;

}

/* ==========================================================
   LINK
========================================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================================================
   LIST
========================================================== */

ul,
ol{

    list-style:none;

}

/* ==========================================================
   TABLE
========================================================== */

table{

    border-collapse:collapse;

    border-spacing:0;

}

/* ==========================================================
   TEXTAREA
========================================================== */

textarea{

    resize:vertical;

}

/* ==========================================================
   HR
========================================================== */

hr{

    border:none;

}

/* ==========================================================
   HIDDEN
========================================================== */

[hidden]{

    display:none !important;

}
