* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.no-css-link {
    text-decoration: none;
    color: inherit;
}

html,
body {
    background-color: #000;
    height: 100%;
}

.no-css-link:hover {
    text-decoration: none;
    color: inherit;
}

.content {
    max-width: 1220px;
    margin: auto;
    padding: 20px;
}

.top {
    background-image: url(../images/background.jpg);
    background-size: cover;
    background-position: bottom;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    min-height: 75vh;
    flex-direction: column;
    justify-content: space-between;
}

.not-found {
    background-image: url(../images/backgrounds.jpg);
    background-size: cover;
    background-position: bottom;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    min-height: 75vh;
    flex-direction: column;
    justify-content: space-between;
}

.menu {
    float: right;
}

a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    padding-left: 35px;
    padding-right: 35px;
    border-radius: 25px;
    font-weight: 300;
}

a.button {
    background-color: #FFF;
    color: #262626;
}

a:hover {
    background-color: #262626;
    color: #FFF;
}

.banner {
    padding: 50px;
    padding-top: 250px;
    padding-bottom: 250px;
    text-align: center;
    color: #fff;
}

.banner h1 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 20px;
}

.not-found h1 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner p {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 300;
    opacity: 0.62;
}

.footer {
    background-color: #000000;
}

.content .logo {
    width: 185px;
    opacity: 1;
    float: none;
    text-align: center;
    margin: 20px auto;
    display: block;
}

.footer h1 {
    padding: 50px;
    color: #8e8e8e;
    font-weight: 300;
    text-align: center;
}

.footer p {
    padding-top: 5px;
    color: #E5E5E5;
    font-weight: 300;
    text-align: center;
}

@media only screen and (max-width: 890px) {
    .menu {
        display: none;
    }

    .top {
        text-align: center;
    }

    .banner {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .banner h1 {
        font-size: 35px;
    }

    .banner p {
        font-size: 20px;
    }

    .banner {
        padding-bottom: 150px;
    }

    .footer {
        text-align: center;
    }
}