body {
    margin: 0;
    padding: 0;
    background-color: #e9ecf7;
    color: #ec2121;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    font-family: 'Archivo', sans-serif;
}

.logo {
    position: absolute;
    top: 20px;
    text-decoration: none;
}

.logo img {
    max-width: 200px;
}

.content {
    max-width: 90%;
    width: 800px;
    font-size: 5vh;
    font-weight: 400;
}

.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 800px) {
    .content {
        font-size: 10vw;
    }
}