html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

#wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#top {
    flex-grow: 1;
    padding: 2em;
    background-color: #83005b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

#top h1 {
    margin: 0;
    line-height: 1.1em;
    font-weight: 300;
    font-size: 1.75em;
    text-transform: uppercase;
}

#top .logo {
    margin: 2em 0;
}

#top .logo img {
    width: 200px;
    height: 70px;
}

#top .info {
    font-size: 1.5em;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

#top #counter {
    text-align: center;
    font-size: 5em;
    font-weight: 700;
    line-height: 1em;
}

#bottom {
    padding: 0.8em 0.5em;
    font-size: 0.8em;
}

@media screen and (min-width: 768px) {
    #top h1 {
        font-size: 2.6666em;
    }

    #top .logo {
        margin: 4em 0;
    }

    #top .logo img {
        width: 400px;
        height: 140px;
    }

    #top .info {
        font-size: 2em;
    }

    #top #counter {
        font-size: 8em;
    }
}