*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
font-size:17px;
}
body{
font-family:var(--ff1);
background:var(--bgc);
color:var(--cl1);
min-height:100vh;
display:flex;
flex-direction:column;
-webkit-font-smoothing:antialiased;
}
a{
color:var(--lnk);
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
::selection{
background:var(--ac1);
color:#fff;
}
::-webkit-scrollbar{
width:6px;
height:6px;
}
::-webkit-scrollbar-track{
background:var(--bgc);
}
::-webkit-scrollbar-thumb{
background:var(--bc2);
}
::-webkit-scrollbar-thumb:hover{
background:var(--cl3);
}