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

body {
    font-family: "Nunito", sans-serif;
    color: rgb(13, 71, 13);
    background-color: #FBF5EC;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid gray;
}

.logo {
    width: 200px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(13, 71, 13);
}

.browse-button {
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    border-radius: 7px;
    background-color: rgb(13, 71, 13);
    color: white;
    cursor: pointer;
}

.second-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}

.second-section p {
    width: 482px;
    text-align: center;
}

.main-photo {
    width: 800px;
    height: 350px;
    display: flex;
    margin: auto;
    border: 8px solid white;
    border-radius: 10px;
    margin-top: 45px;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-section h2 {
    text-align: center;
    margin-top: 50px;
}

.benefits {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.benefits div {
    width: 300px;
    margin-top: 30px;
}

.third-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
    gap: 80px;
}

.third-section .main-description {
    width: 440px;
    line-height: 22px;
}

.cooking-photo {
    width: 450px;
}

.cooking-photo img {
    width: 100%;
    border-radius: 20px;
}

#third-title {
    margin-bottom: 20px;
}

#first-paragraph {
    margin-bottom: 15px;
}

.last-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 69%;
    height: 320px;
    margin: auto;
    background-color: rgb(231, 236, 238);
    margin-top: 70px;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
}

#fork {
    position: absolute;
    left: -60px;
    bottom: -15px;
    width: 250px;
}

#knife {
    position: absolute;
    right: -50px;
    width: 250px;
}

.ready-to-cook {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.ready-to-cook p {
    margin-bottom: 15px;
}

.ready-to-cook h2 {
    font-size: 2.4rem;
}

footer {
    display: flex;
    justify-content: end;
    width: 84%;
    gap: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
}
