/* ==========================
   Box Model
========================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ==========================
   HTML
========================== */

html{
    font-size:16px;
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* ==========================
   Body
========================== */

body{
    min-height:100vh;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

/* ==========================
   Images & Media
========================== */

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

/* ==========================
   Links
========================== */

a{
    color:inherit;
    text-decoration:none;
}

/* ==========================
   Lists
========================== */

ul,
ol{
    list-style:none;
}

/* ==========================
   Forms
========================== */

input,
button,
textarea,
select{
    font:inherit;
    color:inherit;
}

button{
    background:none;
    border:none;
    cursor:pointer;
}

textarea{
    resize:vertical;
}

/* ==========================
   Tables
========================== */

table{
    border-collapse:collapse;
    border-spacing:0;
}

/* ==========================
   Misc
========================== */

fieldset{
    border:none;
}

iframe{
    border:0;
}