html,
body {
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    height: 100%;
    background: #EEEEF4;
    font-weight: 100;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

main {
    height: 100%;
    display: flex;
    margin: 0 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main h1 {
    font-size: 3em;
    font-weight: 100;
    color: #F44;
    margin: 0;
}

main h2 {
    font-size: 1.5em;
    font-weight: 100;
    margin-bottom: 0;
}

main h3 {
    font-size: 1.5em;
    font-weight: 100;
    margin-top: 0;
}

main a {
    font-size: 1.5em;
    font-weight: 300;
    color: #F44;
    text-decoration: none;
}

.logo {
    width: 25%;
    padding: 0 50px 50px 50px;
}

footer {
    position: absolute;
    bottom: 0;
    margin: 10px;
    font-weight: 300;
}



@media only screen and (max-width: 1000px) {
    .logo {
        width: 40%;
        padding: 50px 50px 50px 50px;
    }
}

@media only screen and (max-width: 600px) {
    .logo {
        width: 75%;
        padding: 50px 50px 50px 50px;
    }
}