body {
    margin: 0;
    font-family: "Roboto";
    text-align: center;
    background-color: #ecc56a;
}

a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

a:hover {
text-decoration: underline;
cursor: pointer;
}

header {
    background-image: url(../images/background-header-comb.avif);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    border-bottom: 1px solid brown;
}

header img {
    height: 86px;
    width: auto;
}

header h1 {
    font-family: 'Roboto Mono';
    flex-grow: 1;
}

header nav {
    text-align: right;
    display: inline-block;
    
}

nav span {
    display: inline-block;
    padding: 35px 10px 30px 10px;
    font-size: 16px;
    font-weight: bold;
}

.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}

@media screen and (max-width: 390px) {
    
    header {
        flex-shrink: 1;
    }

}

/* Mission section */

.mission {
    background-image: url(../images/3-bee-products-and-their-benefits-large-banner.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1200px;
    height: 700px;
    margin: auto;
    margin-top: 20px;
    border-radius: 10px;

}

.statement {
    text-align: center;
    width: 100%;
    margin: auto;
    background-color: #ecc56a;
}

.statement h3 span {
    text-decoration: underline;
}

/* products section */

.shop {
    display: flex;
    justify-content: center;
    align-items: center;

}

.shop img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    border: 1px solid black;
}

.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 1200px;
    height: 700px;
    margin: auto;
    background-image: url(../images/products-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.item {
    width: 300px;
    height: 300px;
    background-color: rgb(88, 58, 18);
    padding: 10px;
    border: 1px solid yellow;
    border-radius: 100%;
}

.item img {
    width: 200px;
    height: auto;
    border-radius: 50%;
}

.shop h2 {
    padding: 50px 20px;
    text-decoration: underline;
}

.item h4 {
    color: white;
}

.item span {
    font-size: 16px;
    font-weight: bold;
    color: whitesmoke;
    border-radius: 10px;
    border: 1px solid black;
    background-color: orange;
    padding: 5px;
    box-shadow: 3px 3px black;
}

.item span:hover {
    cursor: pointer;
    text-decoration: underline;
}

.item span:active {
    text-decoration: none;
    color: bisque;
    box-shadow: none;
    padding: 3px;
    font-size: 15px;
}

/* staff section */

.staff-container {

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1200px;
    height: 700px;
    flex-wrap: wrap;
    margin: auto;
    background-image: url(../images/banner-staff.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.staff img {
    height: 180px;
    width: 260px;
    border-radius: 50%;
    border: 1px dotted yellow;
    margin-top: 5px;
}

.staff {
    height: 300px;
    height: 300px;
    background-color: rgb(88, 58, 18);
    border-radius: 10px;
}

.two {
    width: 300px;
}

.staff h2 {
    color: whitesmoke;
    text-decoration: underline;
    margin: 10px 0px;
}

.staff span {
    padding: 5px;
    font-size: 16px;
    color: whitesmoke;
}

/* footer section */

.footer {
    margin-top: 70px;
    border-top: 1px solid brown;
    background-image: url(../images/background-header-comb.avif);
    background-repeat: no-repeat;
    background-size: cover;
}

.copyright {
    text-align: left;
}
