* {
    color: black;
}

body {
    background-color: #ececec;
    margin: auto;
    width: 75vw;

    text-align: center;
    font-family: segoe ui, Helvetica, Arial, sans-serif;
    word-wrap: break-word;
}

@media only screen and (max-width: 1000px) {
    body {
        width: 100vw;
    }
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

.fade-in {
    animation: fadeIn ease 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#centered {
    position: absolute;
    width: 100%;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
}