/* ==========================================================
   RESET
   AngelicMU Presentation
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    min-height:100vh;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img{
    display:block;
    max-width:100%;
    user-select:none;
    -webkit-user-drag:none;
}

picture{
    display:block;
}

svg{
    display:block;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    background:none;
    font:inherit;
}

input,
textarea,
select{
    font:inherit;
    outline:none;
    border:none;
}

ul,
ol{
    list-style:none;
}

a{
    color:inherit;
    text-decoration:none;
}

table{
    border-collapse:collapse;
    border-spacing:0;
}

::selection{
    background:#d6a64b;
    color:#000;
}

::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-track{
    background:#08050d;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(#8d6322,#d6a64b);
    border-radius:100px;
}

::-webkit-scrollbar-thumb:hover{
    background:#f1c86b;
}