body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #87AB81;
    color: white;
    font-family: "Times New Roman", Times, serif;
}

.header {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
}

.product-logo {
    width: 175px; 
}

.product-logo img {
    width: 175px;
}

.title {
    flex: 1;
    text-align: center;
    font-size: 48px;
    letter-spacing: 2px;
    margin: 0;
}

.options {
    display: flex;
    gap: 40px;
    padding: 40px;
    flex: 1;
    align-items: flex-start;
}

.nav {
    background-color: #D9D7C5;
    color: rgb(77, 78, 79);
    width: 160px;
    padding: 25px;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    gap: 25px;  
}

.nav a {
    text-decoration: none;
    color: rgb(77, 78, 79);
    font-weight: bold;
    font-size: 18px;
}

.product {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 260px;
    background-color: #D9D7C5;
    color: rgb(77, 78, 79);
    border-radius: 30px;
    border: 2px solid #2f3e46;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 140px;
    height: auto;
    margin-bottom: 15px;
}

.product-card h3 {
    margin: 0;
    font-size: 20px;
}

footer {
    background-color: #D9D7C5;
    color: rgb(77, 78, 79);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 15px;
    border-top: 2px solid black;
}