.pageTag {
    text-align: center;
    color: green;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    background: white;
}

.productProfile {
    background-color:  honeydew;
}

.productName {
    font-size: 20px;
    color: purple;
}

.imageanddescription {
    display: flex;
}

.productImage {
    width: 300px;
}

.productImage img {
    width: 100%;
}

.productDescription {
    padding: 10px;

}

.productSellers {
   border-bottom: 1px solid white;
}

.productSellers:last-child {
    border-bottom: none;
}

.productSellers a:hover .div{
    background: white;
    padding: 5px;
    border-radius: 2px;
}

.sellerandlocation {
    display: flex;
}

.sellerName {
    font-weight: bold;
}

.sellerLocation {
    padding: 3px;
}

.place {
    padding: 3px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: bold;
    background-color: chartreuse;
    display: initial;
}

.productPrice {
    color: green;
    font-weight: bold;
}