@charset "utf-8";
/* CSS Document */
body {
    background-color: #f5f1e8;
    color: #2f3e32;
    font-family: Arial, sans-serif;
    margin: 0;
}

header {
    background-color: #ffffff;
    text-align: center;
    padding: 30px;
}

header h1 {
    font-family: Georgia, serif;
    font-size: 40px;
    margin: 0;
}

header p {
    font-size: 18px;
}

nav {
    background-color: #2f3e32;
    text-align: center;
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    width: 80%;
    margin: auto;
}

section {
    background-color: white;
    margin: 30px 0;
    padding: 30px;
    text-align: center;
}

section h2 {
    font-family: Georgia, serif;
    font-size: 30px;
}

section h3 {
    color: #5b705c;
}

footer {
    background-color: #2f3e32;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.product {
    background-color: #f5f1e8;
    width: 250px;
    padding: 20px;
    text-align: center;
}

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

.product h3 {
    font-family: Georgia, serif;
    font-size: 22px;
}
.hero {
    text-align: center;
    padding: 40px;
}

.hero img {
    width: 450px;
    height: 150px;
    object-fit: contain;
    max-width: 100%;
}

.hero h2 {
    font-family: Georgia, serif;
    font-size: 32px;
}
form {
    text-align: left;
    width: 60%;
    margin: auto;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #c8c1b5;
    font-family: Arial, sans-serif;
}

input[type="submit"] {
    background-color: #2f3e32;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #5b705c;
}