/* ==========================================================
   THE AI ACE
   RESET CSS
   ========================================================== */

/* ---------- RESET ---------- */

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

/* ---------- HTML ---------- */

html{
    scroll-behavior:smooth;
    font-size:16px;
}

/* ---------- BODY ---------- */

body{

    font-family:var(--font-family);

    background:var(--bg-primary);

    color:var(--text-primary);

    line-height:1.6;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/* ---------- LINKS ---------- */

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

/* ---------- BUTTONS ---------- */

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

/* ---------- INPUTS ---------- */

input,
textarea,
select{

    font:inherit;

    border:none;

    outline:none;

}

/* ---------- IMAGES ---------- */

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* ---------- VIDEO ---------- */

video{

    max-width:100%;

}

/* ---------- SVG ---------- */

svg{

    display:block;

}

/* ---------- LIST ---------- */

ul,
ol{

    list-style:none;

}

/* ---------- TABLE ---------- */

table{

    border-collapse:collapse;

    border-spacing:0;

}

/* ---------- IFRAME ---------- */

iframe{

    border:none;

}

/* ---------- HR ---------- */

hr{

    border:none;

}

/* ---------- SELECTION ---------- */

::selection{

    background:var(--color-primary);

    color:#000;

}

/* ---------- SCROLLBAR ---------- */

::-webkit-scrollbar{

    width:11px;

}

::-webkit-scrollbar-track{

    background:#061018;

}

::-webkit-scrollbar-thumb{

    background:#174e6c;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--color-primary);

}