body {
    font-style: oblique;
    cursor: pointer;
    margin: 0;
    background-color: black;
    color: aliceblue;
}

video {
    width: 500px;
    position: absolute;
    top: 30%;
    left: 50%;
}

#video1 {
    top: 12%;
}

#video2 {
    top: 65%;
}

#space {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    white-space: pre;
}

#stage {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 1;
    z-index: 1;
}

.fadeout {
    animation: fadeout 3s ease;
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

a {
    color: gray;
    text-decoration: none;
}