* {
    margin: 0px;
    padding: 0px;
}

@keyframes reveal {
    from {opacity: 0;}
    to {opacity: 1;}
}

body {
    font-family: serif;
    color: white;
    background: black;
}

footer {
    position: absolute;
    box-sizing: border-box;
    width: calc(100vw - 20px);
    top: 100vh;
    padding: 20px;
    margin: 10px;
    background: rgb(54, 54, 54);
}

#auditory {
    position: absolute;
    text-align: center;
    height: 50px;
    width: 100vw;
    top: calc(50vh - 25px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 2.5s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

#eyes {
    position: absolute;
    text-align: center;
    height: 50px;
    width: 100vw;
    top: calc(50vh - 50px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 5.5s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

#time {
    position: absolute;
    text-align: center;
    height: 50px;
    width: 100vw;
    top: calc(50vh);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 7.5s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

#one {
    position: absolute;
    text-align: center;
    height: 50px;
    width: 50px;
    top: calc(50vh - 25px);
    left: calc(50vw - 200px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 9.5s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

#two {
    position: absolute;
    text-align: center;
    height: 50px;
    width: 50px;
    top: calc(50vh - 25px);
    left: calc(50vw - 25px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 10.5s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

#three {
    position: absolute;
    text-align: center;
    height: 50px;
    width: 50px;
    top: calc(50vh - 25px);
    left: calc(50vw + 150px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 11.5s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

#go {
    position: absolute;
    text-align: center;
    height: 50px;
    width: 50px;
    top: calc(50vh - 25px);
    left: calc(50vw - 25px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 15s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

#weepingangel1 {
    position: absolute;
    text-align: center;
    top: calc(50vh - 267px);
    left: calc(50vw - 200px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 25s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#weepingangel2 {
    position: absolute;
    text-align: center;
    top: calc(50vh - 503px);
    left: calc(50vw - 500px);
    opacity: 0;
    animation-name: reveal;
    animation-duration: 2s;
    animation-delay: 30s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

a {
    color: rgb(255, 0, 0);
}

a:hover {
    color: rgb(255, 0, 0);
}

a:active {
    color: rgb(255, 0, 0);
}

a:visited {
    color: rgb(255, 0, 0);
}

::selection {
    color: black;
    background: rgb(255, 0, 0);
}