html {
    background-color: #D9D7C5;
    color: white;

}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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-style: solid;
    border-color: black;
}

.options {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.nav {
    background-color: #87AB81;
    color: white;
    width: 100px;
    height: 250px;
    margin: 20px;
    border-style: solid;
    border-color: black;
    border-width: 2px;
}

.header {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    padding: 20px 40px;
    margin-top: 10px;
    color:rgb(77, 78, 79);
}

.logo {
    flex: 1;
}

.title {
    flex: 2;
    text-align: center;
    font-size: 24pt;
}

.product {
    margin-top: 60px;
    gap: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    flex: 1;
}

.productImage {
    height: 250px;
    width: 25%;
}

.info {
    display: flex;
    flex-direction: column;

}

.descr {
    text-align: center;
    font-size: 12pt;
    line-height: 2;
    color:rgb(77, 78, 79);
}

.pricing {
    background-color: #87AB81;
    color: white;
    width: 200px;
    height: 150px;
    margin: 20px;
    border-style: solid;
    border-color: black;
    border-width: 2px;
}