/* ==========================================================
   CubexSoft 2.0
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}

img,
picture{
    display:block;
    max-width:100%;
}

svg{
    display:block;
}

input,
button,
textarea,
select{
    font:inherit;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    background:none;
}

a{
    text-decoration:none;
    color:inherit;
}

ul,
ol{
    list-style:none;
}

table{
    border-collapse:collapse;
}

:focus-visible{
    outline:3px solid #2563EB;
    outline-offset:4px;
}