body {
    margin: 80px 20px;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: white;
    background-color: black;
}

.stage {
    margin: 0 auto;
    max-width: 900px;
}

h1 {
    margin: 0 0 40px 0;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    animation: fadein 2s;
    animation-fill-mode: forwards;
}

h2 {
    margin: 0 0 32px 25px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    animation: fadein 2s;
    animation-fill-mode: forwards;
}

p {
    margin: 0 0 0 25px;
    font-size: 28px;
    font-weight: 500;
    opacity: 0;
    animation: fadein 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.info {
    margin: 40px 0 40px 25px;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
}

a {
    color: white;
}


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

@media screen and (max-width: 600px) {
    body {
        margin: 40px 20px;
    }
    h1 {
        font-size: 72px;
    }
    h2 {
        font-size: 32px;
    }
    p {
        font-size: 22px;
        margin: 0 0 0 16px;
    }

    .info {
        margin: 30px 0 30px 16px;
        font-size: 16px;
    }
}