body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: black;
    cursor: pointer;
}

#space {
    padding: 20px;
    backdrop-filter: invert(1) brightness(0.5);
    font-size: 18pt;
    white-space: pre-line;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-250px) translateY(-50%);
    opacity: 0;
    user-select: none;
    text-align: center;
    color: white;
    width: 500px;
}

a {
    color: rgb(197, 0, 255);
    text-decoration: none;
}

#space > span {
    background-color: white;
    line-height: 200%;
}

#video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    margin: 0 auto;
    z-index: -1;
}

.contrast {
    animation: contrast 5s ease;
}

.fadein {
    animation: fadein 3s ease;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#sun {
    position: fixed;
    width: 300px;
    position: fixed;
    top: 5%;
    right: 5%;
    opacity: 0;
}

#sun:hover {
    opacity: 0.5;
}

a {
    color: #cccccc;
    text-decoration: none;
}