body {
    background-color: #ddd;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

/* nav */
nav {
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 10;
}

a {
    display: block;
    color: white;
    justify-content: flex-end;
    padding: 14px 16px;
    text-decoration: none;
    float: right;
}

a:hover {
    background-color: #999;
}

.product-container {
    width: 800px;
    padding: 20px;
    margin: auto;
    background-color: #fff;
    margin-top: 50px;

}

.row1 {
    display: flex;
}

#img1 {
    width: 350px;
    padding: 15px 40px 15px 15px;
    height: 350px;
}

.promo-code {
    background-color: rgb(191, 237, 196);
    padding-top: 4px;
    border: 0.5px solid #8da81f;
    height: 25px;
    margin: 10px 60px;
    text-align: center;

}

.product-detail {
    width: 350px;
    /* padding: 0; */
}


.row2 {
    display: flex;
    justify-content: center;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info h3{
    margin: 1px;
}
.info p{
    margin: 1px;
    margin-bottom: 10px;
}

.row2>div {
    width: 300px;
    margin: 10px;
}

h2 {
    padding: 10px;
}

.img {
    height: 180px;
    width: 150px;
}

.related-product {
    margin: 10px;
    padding: 10px;
    border: 2px solid black;
    background-color: rgb(36, 130, 106);
    width: 100px;
    position: relative;
    width: 300px;
    height: 200px;
    background-color: lightgray;
    margin-bottom: 20px;
    overflow: hidden;
    margin: 0;
}

.related-product-name {
    background-color: black;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 12px;
    display: none;
    margin: 0;
}

footer {
    background-color: #000;
    margin: 0;
    padding-top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 40px;
    margin-top: 20px;
}

/* Aboutt Pages */

.related-product:hover .related-product-name {
    display: block;
}

.navigation-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: lightblue;
    padding: 10px;
}

.navigation-menu a {
    text-decoration: none;
    color: black;
}

.navigation-menu a:hover {
    text-decoration: underline;
}

.navigation-menu a[href="about.html"] {
    text-decoration: none;
    color: black;
}

.navigation-menu a[href="index.html"] {
    text-decoration: none;
    color: black;
}

.circular-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* wer */
.image-container {
    position: relative;
    display: inline-block;
}

.caption {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    display: none;

}

.image-container:hover .caption {
    display: block;
}