a {
    color: #6f6f73;
    font-size: 15px;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    bottom: 25px;
}
body {
    background-color: black;
    color: white;
    font-family: -apple-system, helvetica;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}
@keyframes fade1 {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade2 {
    0% {
        opacity: 0;
    }
    55% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#ind {
    animation: fade1 ease-out 1500ms;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    font-size: 40px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 125px;
}
.metadata {
    animation: fade2 ease 2500ms;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    font-size: 20px;
    font-stretch: extra-condensed;
    line-height: 1.3;
    position: relative;
    text-transform: uppercase;
    top: 150px;
}
.main {
    height: 300px;
    position: relative;
}