html {
    font-size: 14px;
    background-color: beige;
    box-sizing: border-box;
}

body {
    text-align: center;
    font-family: "Cause", sans-serif;
}

/*Header & Nav Section*/
header {
    display: flex;
    background-image: url("./background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    justify-content: center;
}
nav {
    display: flex;
    justify-content: space-around;
    text-decoration: underline;
    cursor: pointer;
    max-width: 100%;
}
/*About Us Section*/

.about {
    background-color: #f598da;
    border-radius: .25rem;
    color: white;
    height: 50%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
}

/*Product Section*/

.products {
    display: flex;
    justify-content: center;
}

.offers {
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    height: max-content;
    object-fit: cover;
}

#product-photos {
    display: flex;
    max-width: 100%;
    height: 70%;
    border-radius: 4px;
    width: 100%;
}

figure {
    background-color: #d1a579;
    border-radius: .25rem;
    max-width: 100%;
    width: 100%;
}

figcaption h3 {
    text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
    .offers {
        font-size: .75rem;
    }
}

@media only screen and (max-width: 768px) {
    .offers {
        font-size: .5rem;
        margin-top: .25rem;
        margin-bottom: .25rem;
        width: 100%;
    }
}

@media only screen and (max-width: 375px) {
    .offers {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}

/*Leaders Section*/

.team {
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    width: 100%;
}

.people {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    background-color: #d1a579;
    border-radius: .25rem;
    margin: 1rem 1rem;
}
