@import url("https://fonts.googleapis.com/css2?family=IBM%20Plex%20Mono:wght@400;700&amp;display=swap");

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: IBM Plex Mono;
}

video {
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.proceed-button {
    background-color: transparent;
    border: none;
    font-family: "monospace";
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.proceed-button:hover {
    text-decoration: underline;
}

.nav-links {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.nav-links a {
    margin: 0 5px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    font-size: smaller;
    cursor: pointer;
    transition: color 0.3s, opacity 0.3s;
    text-shadow: 2px 2px 5px black; 
}

.nav-links a:hover {
    text-decoration: underline;
}

.nav-links span {
    color: #fff;
    opacity: 0.45; 
    font-size: 1.0em;
    line-height: 1;
}