html {
    background-color: #D9D7C5;
    color: white;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Times New Roman", Times, serif;
}

footer {
    background-color: #87AB81;
    color: rgb(77, 78, 79);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
    height: 60px;
    margin-top: auto;
    border: 2px solid black;
}

.options {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 40px 80px;
}

.nav {
    background-color: #87AB81;
    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;
}

.header {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
    color: rgb(77, 78, 79);
}

.product-logo {
    width: 200px;
}

.product-logo img {
    width: 200px;
}

.title {
    flex-grow: 1;
    text-align: center;
    font-size: 48px;
}

.product {
    flex: 1;
    display: flex;
    gap: 120px;
    justify-content: center;
    align-items: flex-start;
    margin-left: 60px;
}

.productImage img {
    width: 260px;
    height: auto;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: rgb(77, 78, 79);
}

.descr {
    font-size: 18px;
    text-align: left;
    max-width: 320px;
}

.pricing {
    background-color: #87AB81;
    padding: 30px;
    border: 2px solid #2f3e46;
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.pricing input,
.pricing select {
    padding: 8px;
    border: none;
    margin-bottom: 10px;
    width: 100%;
}

.pricing button {
    background-color: #D9D7C5;
    color: #2f3e46;
    border: 2px solid #2f3e46;
    padding: 5px;
    cursor: pointer;
    font-weight: bold;
}