/* offset scroll targets so fixed nav doesn't cover them */
section[id] {
    scroll-margin-top: 6rem;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

.glass-header {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.asymmetric-mask {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

::selection {
    background-color: #008dc3;
    color: #ffffff;
}
