html {
    background-color: #000;
    position: relative;
}

html,
body,
main {
    margin: 0;
    padding: 0;
}

main {
    width: 100%;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50vh;
    transform: translate(0, -100%);
    font-family: 'Major Mono Display', monospace;
}

h2 {
    font-weight: 400;
    animation-name: fadeIn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

p em {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

p em:nth-of-type(1) {
    animation-delay: 5s;
}

p em:nth-of-type(2) {
    animation-delay: 6.5s;
}

p em:nth-of-type(3) {
    animation-delay: 8s;
}

em {
    font-style: normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
