html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    background-color: #2b2b2b;
}
::-webkit-scrollbar-track {
    background-color: #2b2b2b;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}
::-webkit-scrollbar-button {
    display: block;
    background-color: #2b2b2b;
    height: 10px;
}
::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-bottom: 6px solid #ccc;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
::-webkit-scrollbar-button:single-button:vertical:increment {
    border-top: 6px solid #ccc;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
