@import './reset.css';
@import './vars.css';
@import './fonts.css';

html, body, button, p, h1, h2, h3, h4, h5, h6, label {
    font-family: var(--main-font-regular);
    -webkit-font-smoothing: antialiased;
}

*::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

*::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

*::-webkit-scrollbar-thumb {
    background: grey;
    border: 0px none #ffffff;
    border-radius: 50px;
}

*::-webkit-scrollbar-track {
    background: #e6e6e6;
    border: 0px none #ffffff;
    border-radius: 50px;
}

*::-webkit-scrollbar-corner {
    background: transparent;
}