body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #0a6e59;
}

header {
    color: #0a6e59;
    background-color: #0b454d;
    color: white;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
}

.cart-icon svg {
    fill: white;
}

main {
    padding: 20px;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-images {
    flex: 1;
    min-width: 300px;
}

.main-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.thumbnail-images {
    display: flex;
    justify-content: space-between;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    cursor: pointer;
}

.product-info {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.product-description {
    line-height: 1.6;
    color: #444;
}

.product-price {
    font-size: 1.2em;
    font-weight: bold;
    color:  hsl(151, 83%, 35%);
}

.add-to-cart-btn {
    background-color: hsl(187, 68%, 24%);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #0b454d;
    color: white;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer a {
    color: white;
    text-decoration: none;
}

.add-to-cart-btn:hover{
background-color: #137481;
}
.text{
    text-align: center;
}