body {
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    background-color: black;
    cursor: pointer;
    overflow: hidden;
}

#video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    margin: 0 auto;
    z-index: -1;
    display: none;
}

#ready {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
}

#stage {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    margin: 0;
    background-color: black;
    z-index: 2;
}

#space {
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: white;
    transform: translateX(-50%) translateY(-50%);
    width: 500px;
    padding: 50px;
    box-shadow: 0px 0px 50px rgba(255,255,255,1);
    white-space: pre-line;
    opacity: 0.8;
}

a {
    color: gray;
    text-decoration: none;
}

#trigger {
    color: red;
    cursor: pointer;
}

.glitch {
    position: absolute;
    color: red;
    cursor: pointer;
}