body {
    background: #b71c1c;
    font-family: 'Open Sans Condensed', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content p {
    color: white;
    font-weight: 700;
    font-size: 56px;
}

.footer {
    margin-top: auto;
}

.footer p {
    color: white;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 1000px) {
    .content p {
        font-size: 24px;
    }
    .footer p {
        font-size: 12px;
    }
}