@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
body{
    font-family: 'Inter';
    font-size:13px;
}
::-webkit-scrollbar {
    height: 12px;
    width: 5px;
    background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 1ex;
    /* -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75); */
}

::-webkit-scrollbar-corner {
    background: #000;
}
h1{
    font-weight:400
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--primary);
}