html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    color: #000;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    background-color: #000;
}

nav a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    width: 150px;
    text-align: center;
}

nav a:hover {
    color: #000;
    background-color: #ffffff;

}


section {
    min-height: 60vh;
}

section.home {
    background-image: url("img/bg-1.png");
    filter: brightness(110%)
}

section.activities {
    background-image: url("img/bg-2.png");
}

.text {
    color: #ffffff;
    padding-top: 2.5rem;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    font-size: 2rem;
    color: white;
    -webkit-text-stroke: 1px #F8F8F8;
    text-shadow: 0px 1px 4px #23430C;
}

.shop {
    color: #0f380f;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: self-start;
    flex-wrap: wrap;
    padding: 2rem;
    background-color: #bbc7c6;

}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
    background-color: #bbc7c6;
}



.product {
    margin-top: 1rem;
    width: 300px;
    height: auto;
    border: 1px solid #000;

}

.gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
}

.product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product h2, .product p {
    padding-left: 1rem;
    padding-right: 1rem;

}