html,
body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.header {
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 80px;
}

nav h1 {
    display: inline-block;
    margin-left: 20px;
    width: 40%;
}

nav ul {
    display: flex;
    width: 50%;
    justify-content: space-between;
    margin-right: 20px;
}

nav ul li {
    display: block;
    margin: 0 15px;
}

nav ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 1.2rem;
    transition: font-size 0.3s ease;
}

nav ul li a:hover {
    color: #ff6600;
    font-size: 1.4rem;
}

#banner {
    background-image: url(./banner-image.jpeg);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    display: flex;
    margin-bottom: 10px;
}

#banner .content {
    margin: auto;
    background-color: #ff6600;
    width: 100%;
    text-align: center;
    font-size: 2rem;
}

#banner h3 {
    color: white;
}

#about {
    margin: 10%;
    font-size: 1.5rem;
    text-align: justify;
    line-height: 2.5rem;
}

h1,
h2 {
    color: #ffcc00;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}


#features {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 10%;
}


.feature {
    background-color: #51e2f5;
    height: 220px;
    width: 220px;
    border-radius: 10px;
    color: white;
    font-size: 1.5rem;
    display: inline-block;
    padding: 15px;
    margin: 30px 10px;
    text-align: center;
    align-content: center;
    font-weight: 600;
}

.feature:nth-child(2) {
    background-color: #ffde09;
}

.feature:nth-child(3) {
    background-color: #ff8928;
}

.feature:nth-child(4) {
    background-color: #59ce8f;
}

.feature:nth-child(5) {
    background-color: #51e2f5;
}

.feature:nth-child(6) {
    background-color: #ffde09;
}


#team {
    margin-bottom: 10%;
}

#team p{
    font-size: 1.5rem;
    margin: 0 10% 5% 10%;
}

.members {
    background-image: url(./team.jpeg);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 350px;
    display: flex;
    margin-bottom: 10px;
    justify-content: space-around;
    align-items: center;
}

.member {
    padding: 10px;
    color: white;
    flex-basis: 280px;
    text-align: center;
}

.member img{
    width: 200px;
}

.member h3 {
    font-size: 1.5rem;
    margin: 0;
}

.member p {
    font-size: 1rem !important;
    margin: 0 !important;
}

#contact {
    font-size: 1.5rem;
    margin: 0 10% 10% 10%;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer ul {
    display: flex;
    justify-content: space-around;
}

footer ul li {
    display: flex;
    display: block;
    margin: 0 20px;
}

footer ul li a {
    text-decoration: none;
    color: #ffcc00;
}

@media only screen and (max-width: 880px) {
    nav h1 {
        display: none;
    }

    nav ul {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin: 0 10%;
    }
}