@font-face {
    font-family: "Roboto";
    src: url("../css/fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Merriweather";
    src: url("../css/fonts/Merriweather_24pt-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: #170a24;
}

.merriweather {
    font-family: "Merriweather", sans-serif;
}

/* Works on Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px; /* width of scrollbar */
}

::-webkit-scrollbar-track {
    background: #1e1e2f; /* scrollbar background */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        #3b82f6,
        #f59e0b
    ); /* blue to amber */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        #2563eb,
        #d97706
    ); /* darker on hover */
}

/* Works on Firefox */
* {
    scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: #3b82f6 #1e1e2f; /* thumb color track color */
}
