body {
margin: 0;
padding: 0;

display: inline-block;
overflow: auto;
}

.overlay-block {
    margin: 0;
    padding: 0;

    height: 100vh;
    width: 100vw;

    background-color: rgb(255, 4, 142);
    mix-blend-mode: exclusion;
}

.overlay-block-2 {
    margin: 0;
    padding: 0;

    height: 100vh;
    width: 100vw;

    backdrop-filter: sepia(100%);
    background-color: rgb(0, 255, 98);
    mix-blend-mode: multiply;
}

.overlay-block-3 {
    margin: 0;
    padding: 0;

    height: 100vh;
    width: 100vw;

    backdrop-filter: sepia(100%);
    background-color: rgb(0, 255, 242);
    mix-blend-mode: multiply;
}

video {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(calc((100% - 100vw) / 2));
    z-index: -1;
}

.content-wrapper {
    margin: 0;
    padding: 0;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    justify-content: center;
}

.clickspot {
    margin: 0;
    padding: 0;

    height: 50px;
    width: 50px; 

    display: flex;
}

#click-1 {
    position: fixed;
    bottom: 50px;
    left: 50px;
}

#click-2 {
    position: fixed;
    top: 50px;
    right: 300px;
}

#click-3 {
    position: fixed;
    top: 400px;
    right: 50px; 
}

#click-4 {
    position: fixed;
    top: 50px;
    right: 100px;
}

#click-5 {
    position: fixed;
    top: 50px;
    left: 100px;
}

.content-container {
    margin:0;
    padding: 0;
    
    width: 500px;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

#artwork {
    width: 285px;
    height: auto;

    display: flex;
    flex-direction: column;

    align-self: center;
}

#masthead-logo {
    margin: 0 0 -25px 0;
    padding: 0;

    width: 300px;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;

    filter: brightness(0) invert(1);
}

@keyframes xtra {
    0% {opacity: 1}
    50% {opacity: 0}
    100% {opacity: 1;}
}

h2 {

    margin: 0;
    padding: 0;

    width: 250px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-self: center;

    font-size: 36px;
    line-height: 40px;
    font-family: Helvetica, sans-serif;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -1px;

    color: #FEFFF1;
    text-align: center;

    animation-name: xtra;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.menu-row {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 35px;

    list-style: none;
}

.menu-row a {
    text-decoration: none;
    color: #FEFFF1;
    opacity: 1;
    transition: ease-in-out 250ms;

    font-size: 25px;
    line-height: 25px;
    font-family: Helvetica, sans-serif;
    font-style: italic;
    font-weight: 500;
}

.menu-row a:hover {
    text-decoration: line-through;
}

.icons-row {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: row;
    align-self: center;

    gap: 25px;
}

.icons-row .svg-wrapper {
    transform: translateY(0);
    transition: ease-in-out 150ms;
    opacity: 1;
}

.icons-row .svg-wrapper:hover {
    transform: translateY(-2.5px);
    opacity: 0.8;
}

@media only screen and (max-width: 600px) {
    body {
        overflow-y: hidden;
    }
    .content-wrapper {
        margin: 0;
        padding: 0;

        position: fixed;
        top: 50px;
        right: 0;
        bottom: 0;
        left: 0;

        display: flex;
        justify-content: center;    
    }

    #artwork {
        width: 225px;
        height: auto;
    
        display: flex;
        flex-direction: column;
    
        align-self: center;
    }
}

@media only screen and (min-width: 600px) {
    body {
        overflow-y: visible;
    }

    .content-wrapper {
        margin: 0;
        padding: 0;

        position: fixed;
        top: 25px;
        right: 0;
        bottom: 0;
        left: 0;

        display: flex;
        justify-content: center;    
    }    

    #artwork {
        width: 250px;
        height: auto;
    
        display: flex;
        flex-direction: column;
    
        align-self: center;
    }
}

@media only screen and (min-width: 768px) {
    body {
        overflow-y: visible;
    }

    .content-wrapper {
        margin: 0;
        padding: 0;

        position: fixed;
        top: 100px;
        right: 0;
        bottom: 0;
        left: 0;

        display: flex;
        justify-content: center;    
    }        

    #artwork {
        width: 300px;
        height: auto;
    
        display: flex;
        flex-direction: column;
    
        align-self: center;
    }
}

.leak {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-self: center;
    list-style: none;
    text-align: center;

    gap: 115px;

    text-decoration: none;
    color: #FEFFF1;
    opacity: 1;
    transition: ease-in-out 250ms;

    font-size: 25px;
    line-height: 25px;
    font-family: Helvetica, sans-serif;
    font-style: italic;
    font-weight: 40;
}