/* ==========================================================
   RESET.CSS
   Modern CSS Reset
========================================================== */

/* ==========================================================
   Box Model
========================================================== */

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

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/* ==========================================================
   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,
video,
canvas,
svg{

    display:block;

    max-width:100%;

}

/* ==========================================================
   Form Elements
========================================================== */

input,
button,
textarea,
select{

    font:inherit;

    color:inherit;

    background:none;

    border:none;

    outline:none;

}

/* ==========================================================
   Buttons
========================================================== */

button{

    cursor:pointer;

}

/* ==========================================================
   Links
========================================================== */

a{

    color:inherit;

    text-decoration:none;

}

/* ==========================================================
   Lists
========================================================== */

ul,
ol{

    list-style:none;

}

/* ==========================================================
   Tables
========================================================== */

table{

    border-collapse:collapse;

    border-spacing:0;

}

/* ==========================================================
   Typography
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:inherit;

    line-height:1.2;

}

p{

    line-height:1.7;

}

/* ==========================================================
   Text Selection
========================================================== */

::selection{

    background:rgba(0,212,255,.25);

    color:#ffffff;

}

/* ==========================================================
   Scrollbar
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111f;

}

::-webkit-scrollbar-thumb{

    background:#1d4ed8;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#2563eb;

}

/* ==========================================================
   Focus
========================================================== */

:focus-visible{

    outline:2px solid #3b82f6;

    outline-offset:3px;

}

/* ==========================================================
   Hidden
========================================================== */

[hidden]{

    display:none !important;

}