/* css/global.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'DM Sans', 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* We will use this class later to hide scrollbars on the whole site while keeping scroll functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}