
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body {
    width: 100vw;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    color: #000000;
    height: 100vh;
    background-color: #EDEDED;
}

main {
    height: inherit;
}

a {
    text-decoration: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #242523 #ffffff;
    font-family: 'Raleway', sans-serif !important;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 14px;
}

*::-webkit-scrollbar-track {
    /*background: #ffffff;*/
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #242523;
    border-radius: 10px;
    border: 3px solid #ffffff;
    height: 15%;
}

