* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

body {
    font-family: Helvetica, sans-serif;
}

#overlay-light {
    position: absolute; 
    width: 100vw; 
    height: 100vh;
    /* background: #ffffff; */
    /* background: #000000; */
    background: #070F26;
    z-index: 1;
}

#overlay-dark {
    position: absolute;
    width: 100vw;
    height: 100vh;
    /* background: #000000; */
    background: #ffffff;
    z-index: 2;
}

.content {
    width: 100%; 
    height: 100vh; 
    /* padding: 5% 0; */
    padding: 7% 0;
}

.content > * {
    position: relative; 
    z-index: 3; 
    mix-blend-mode: difference; 
    color: #ffffff;
}

.divider {
    width: 100%; 
    height: 0.5px; 
    background: #ffffff51; 
    /* margin: 0.2em 0; */
    margin: 0.75em 0;
}

.nav, .col {
    text-transform: uppercase;
}

.nav-divider {
    margin-top: 2em;
}

.row {
    width: 100%; 
    height: 22px; 
    display: flex; 
    /* padding: 0 2em; */
    padding: 0 4em;
}

.row > .col {
    position: relative; 
    flex: 1;
}

/* .row > .col:first-child {
    flex: 2;
} */

.marquee {
    position: absolute; 
    bottom: 10%; 
    width: 100%; 
    padding-top: 4em;
    margin: 0 auto; 
    white-space: nowrap; 
    overflow: hidden; 
    z-index: 3;
}

.marquee span {
    font-family: "Neue Montreal";
    font-weight: 400;
    /* letter-spacing: -10px;  */
    color: #000000;
    mix-blend-mode: normal !important; 
    /* font-size: 12em;  */
    text-transform: uppercase; 
    display: inline-block;
    padding-left: -10%; 
    animation: marquee 300s linear infinite; 
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}


h1 {
    font-size: 1.35em;
}


ul, li {
    list-style-type: none;
}


a:link, 
a:visited {
    letter-spacing: 1px;
    font-size: 0.9em;
    font-weight: 300;
    /* font-weight: 400; */
    text-decoration: none;
    color: #ffffff;
    width: 100%;  
    position: relative;
}

/* a:hover, 
a:focus {
    font-size: 1em;
    font-weight: bold;
    transition: 0.3s all ease-in-out;
} */


img {
    opacity: 0.9;
}

img:nth-of-type(odd) {
    max-width: 300px;
    
}

img:nth-of-type(even){
    border-radius: 1em;
    margin: 0 3em;
    object-fit: cover;
    max-width: 500px;
    height: 225px;
}



.cursor {
    /* background-color: #bfbfbf; */
    background-color: #efefef;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    cursor: none;
}



.link {
    position: relative;
    display: inline-block;
    padding: 0;
    line-height: 1em;
    margin: 0;
}

.link--top {
    position: absolute;
    top: 0;
    display: inline-block;
    transform: translateY(-50%) rotateX(90deg);
    transition: transform 0.3s ease-in-out;
    /* font-weight: bold; */
    font-weight: 700;
}

.link--front {
    display: inline-block;
    /* transform: translateZ(0.5em); */
    transform: translateZ(0.3em);
    transition: transform 0.3s ease-in-out;
}

.link:hover .link--top {
    /* transform: translateZ(0.5em); */
    transform: translateZ(0.3em);
    color: #6e95ff;
    /* color: #fdbf80; */
    transition: transform 0.3s ease-in-out;
}

.link:hover .link--front {
    transform: translateY(50%) rotateX(-90deg);
    opacity: 0.8;
    transition: transform 0.3s ease-in-out;
}



