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

body {
    font-family: 'Comic Sans MS', sans-serif;
    padding-bottom: 50px;
}

header {
    background-color: white;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    padding: 10px;
    align-items: center;
    height: 120px; /* Match height of .logo */
}

nav ul li a {
    color: #558b2f;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 120px; /* Match line height to height of .logo */
}

.logo {
    height: 120px;
    width: auto;
}

#home {
    background-image: url('farm.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-info {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}

h1, h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #558b2f;
}

section {
    padding: 20px;
}

section img {
    max-width: 100%;
    height: auto;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product {
    margin: 20px;
    background-color: #f2f2f2;
    padding: 15px;
    flex-basis: 300px;
    border-radius: 5px;
    text-align: center;
}

.product-image {
    width: 100%;
    height: auto;
}

.shop-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: #558b2f;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-button:hover {
    background-color: #33691e;
}

@media screen and (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        height: auto; /* Reset height */
    }

    nav ul li a {
        font-size: 1em;
        line-height: normal; /* Reset line-height */
    }

    section {
        padding: 10px;
    }

    .product-container {
        flex-direction: column;
    }

    .product {
        flex-basis: 100%;
    }

    .shop-button {
        width: 100%;
    }
}
footer {
    background-color: #558b2f;
    padding: 15px;
    color: white;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}
