@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Quicksand:wght@300&display=swap');

body {
    margin: 0;
    background: #151F2F url('background.png');
    font-family: "Quicksand", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #AD9D9E;
}

a {
    color: #768486;
    text-decoration: none;
}

a:hover {
    color: #265F73;
}

h1, h2, h3 {
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.container {
    width: 872px;
    margin: 0 auto;
    background: #2C0204;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 50px #170102, 0 0 8px #170102;
}

.header {
    position: relative;
}

.header img.bg {
    width: 100%;
    display: block;
}

.logo {
    position: absolute;
    top: 480px;
    left: 50%;
    transform: translateX(-50%);
}

.nav {
    position: absolute;
    top: 495px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.nav-group {
    width: 236px;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
}

.nav-group a {
    display: block;
    color: #7e0206;
    line-height: 40px;
}

.nav-group a:hover {
    display: block;
    color: #6a0205;
    line-height: 40px;
    letter-spacing: 3px;
}

.main {
    margin-top: 150px;
    padding: 0 35px;
}

.footer {
    text-align: center;
    font-size: 14px;
    padding: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container {
        width: 100%;
    }

    .logo {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 10px;
    }

    .nav {
        position: static;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-group {
        width: 100%;
        font-size: 28px;
    }

    .main {
        margin-top: 20px;
    }
}