/* Full screen background */
@font-face {
    font-family: "Gill Sans";
    src: url('../fonts/Gill\ Sans\ Light.otf') format("truetype");
}

body {
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: 30% 100%;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 200;
}

.container {
    display: flex;
    flex-direction: column;
    margin: auto;
}

@media only screen and (max-width: 479px) {
    .container {
        width: 100%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 599px) {
    .container {
        width: 95%;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    .container {
        width: 80%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 55%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 45%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .container {
        width: 40%;
    }
}

@media only screen and (min-width: 1500px) {
    .container {
        width: 30%;
    }
}

/* Logo */
.logo {
    align-self: center;
    width: 600px;
    max-width: 80%;
}

/* First line */
h1 {
    text-align: center;
    color: #3078b7;
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 20px;
}

/* Second line */
h2 {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 20px;
}

/* Third line */
.button {
    text-align: center;
    align-self: center;
    color: white;
    font-size: 1em;
    text-transform: uppercase;
    border: solid 2px white;
    margin: 4em 1.8em 4em 1.8em;
    padding: .8em 1.8em .8em 1.8em;
    text-shadow: rgb(78, 78, 78) 0 0 3px;
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 479px) {
    .button {
        font-size: .8em;
        padding: .8em .8em .8em .8em;
    }
}

.button > a:hover {
    color: white;
}

.text-underline {
    text-decoration: underline;
}