/* ==========================================================
   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:
    radial-gradient(
        circle at 78% 18%,
        rgba(0, 120, 255, 0.13),
        transparent 28%
    ),
    radial-gradient(
        circle at 20% 35%,
        rgba(255, 180, 0, 0.07),
        transparent 22%
    ),
    var(--bg);

    color: var(--text);

    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);

}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:
radial-gradient(circle at 78% 18%,rgba(0,120,255,.13),transparent 28%),
radial-gradient(circle at 20% 35%,rgba(255,180,0,.07),transparent 22%),
var(--bg);color:var(--text);font-family:Inter,Arial,sans-serif}
a{color:inherit;text-decoration:none}
