* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, input, textarea {
    font-family: 'Roboto', sans-serif;
}

header {
    padding: 16px 0;
    background-color: #fe0000;
    color: #ecf0f1
}

header,
section h2,
section h3,
form button {
    font-family: 'Bungee', cursive;
    font-weight: normal;
}

header nav li {
    display: inline;
    margin-left: 16px;
    font-size: 18px;
}

header nav li a {
    color: #ecf0f1;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

header .container,
section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main {
    background-image: url(/images/morumbi\ \(2\).jpg);
    background-size: cover;
}

.jerseys-list img {
    height: 150px;
}

.jerseys-list li {
    display: inline;
    margin-right: 8px;
}

section .container {
    align-items: flex-start;
}

section {
    padding: 24px 0;
    color: #000;
}

section h2 {
    margin-bottom: 16px;
}

section p {
    margin-bottom: 8px;
    text-align: justify;
}

section h3 {
    margin-bottom: 16px;
}

.spfc {
    margin-left: 32px;
    height: 370px;
}

.achievements_titles {
    margin-left: 30px;
}

.trofeus{
    height: 350px;
    width: auto;
}
    

#contact .container {
    display: block;
}

.contact-methods {
    display: flex;
    justify-content: space-between;
}

form input,
form textarea,
form button {
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 8px;
}

form textarea {
    resize: none;
    height: 180px;
}

form button {
    background-color: #fe0000;
    color: #ecf0f1;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #e45454;
}

form input:focus, form textarea:focus {
    outline-color: #000;
}

.social-links img {
    height: 24px;
}

.social-links li {
    display: inline;
    margin-right: 8px;
}

.social-links li a {
    text-decoration: none;
}

.adress {
    text-decoration: none;
    color: #000;
}

footer {
    background-color: #fe0000;
    color: #000;
    padding: 16px 0;
    font-size: 15px;
    font-weight: bold;
}

@media (min-width:1100px) and (max-width: 1300px){
    header {
        padding: 16px 50px;
    }
    
    section .container {
        align-items: flex-start;
        padding: 20px;
    }
}

@media (max-width: 1099px) {
    header {
        padding: 16px 100px;
    }

    header h1 {
        font-size: 15px;
    }

    header nav li {
        display: flex;
        margin-left: 6px;
        margin-right: 100px;
        font-size: 14px;
    }

    .container {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    }

    section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    }

    .trofeus {
        width: 550px;
        margin: 16px 0;
    }

    #contact {
        padding: 30px;
    }

    .contact-methods {
        display: block;
        justify-content: center;
        padding: 20px;
    }

    .social {
        margin-bottom: 10px;
        padding: 10px;
    }

    #contact input {
        margin-bottom: 24px;
    }

    footer p {
        text-align: center;
    }

}