
@font-face {
    font-family: 'bmwbold';
    src: url('/fonts/btw-bold.woff') format('woff'),
    url('/fonts/btw-bold.ttf') format('truetype'),
    url('/fonts/btw-bold.eot?#iefix') format('embedded-opentype');
}

@font-face {
    font-family: 'bmwlight';
    src: url('/fonts/btw-light.woff') format('woff'),
    url('/fonts/btw-light.ttf') format('truetype'),
    url('/fonts/btw-light.eot?#iefix') format('embedded-opentype');
}

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

a {
    text-decoration: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #242523 #ffffff;
}

/* 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%;
}

