/* ==========================================
   LOGNEXUS RESET
========================================== */

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

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);

    color:var(--text);

    min-height:100vh;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    background:none;

    font:inherit;

}

input,
textarea,
select{

    border:none;

    outline:none;

    background:none;

    color:inherit;

    font:inherit;

}

ul,
ol{

    list-style:none;

}

table{

    border-collapse:collapse;

    width:100%;

}

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--surface);

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::selection{

    background:var(--primary);

    color:var(--white);

}