/* ==========================================
   RESET.CSS
   Modern Browser Reset
========================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

img{
    height:auto;
    user-select:none;
    -webkit-user-drag:none;
}

a{
    color:inherit;
    text-decoration:none;
}

a:hover{
    text-decoration:none;
}

ul,
ol{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
    color:inherit;
    background:none;
    border:none;
    outline:none;
}

button{
    cursor:pointer;
}

textarea{
    resize:vertical;
}

table{
    border-collapse:collapse;
    border-spacing:0;
}

:focus{
    outline:none;
}

:focus-visible{
    outline:2px solid #C8A96D;
    outline-offset:3px;
}

::selection{
    background:#C8A96D;
    color:#fff;
}