html,
body,
#__nuxt {
margin: 0;
padding: 0;
min-height: 100vh;
background: var(--bg);
color: var(--text);
font-family: var(--font-sans);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
button {
font-family: inherit;
cursor: pointer;
}
a {
color: inherit;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(128, 128, 128, 0.25);
border-radius: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}