.meatspace {
    background-color: black;
    overflow-x: hidden;
    font-family: "NIN";
    text-transform: uppercase;
}
.meatspace .header {
    background-color: black;
    color: #7aff00;
    border-style: none none solid none;
    border-width: 1px;
    border-color: #7aff00;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 5vw;
    font-size: 4vw;
    pointer-events: none;
    z-index: 2;
}
.meatspace .overlay {
    color: #7e4b7f;
}
.meatspace .overlay:hover {
    color: transparent;
}

@keyframes blink-anim {
    0%, 100% {
        background-color: black;
        color: #7aff00;
    }
    50% {
        background-color: #f2ff26;
        color: black;
    }
}
.meatspace .blink {
    animation: blink-anim 1s steps(1, start) infinite;
}
.meatspace .cornerbox {
    border-style: solid;
    background-color: black;
    color: #7aff00;
    border-width: 2px;
    border-color: #7aff00;
    width: 50dvw;
    height: 50dvw;
    right: -40dvw;
    top: -30dvw;
    position: absolute;
    font-size: 1.5vw;
    justify-content: center;
    transform: rotate(-45deg);
}