@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    background-color: var(--color-1);
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background-color: #28090300;
}

::-webkit-scrollbar-button {
    background-color: var(--color-2);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-2);
    border-radius: 3px;
    box-shadow: 0px 0px 2px white;
}