* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --reyllit-red: #E32B2B;
    --reyllit-grey: #716E6E;
    --reyllit-dark-grey: #333439;
    --reyllit-background: #F0F1F3;
    --reyllit-dark-red: #B02121;
}

html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar, 
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    top: -100px; /* Hidden off-screen by default */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--reyllit-red);
    color: white;
    padding: 10px 20px;
    z-index: 9999;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 5px 5px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0; /* Pops down into view when focused via Tab key */
    outline: 2px solid white;
    outline-offset: -4px;
}