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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scrollbar-color: #343440 black;
}

:root {
    --text-color: #568fa6;
    /* Original Color */
    --background-button-color: #44d8a4;
}

::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
    background-color: #f0f0f0;
    /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #568fa6;
    /* Color of the scrollbar itself */
}

body,
html {
    overflow: hidden;
    user-select: none;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
    background-color: #000;
    /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #000;
    /* Color of the scrollbar itself */
}