body{
    width: 100vw;
    height: 100vh;
    background-color: lavenderblush;

    font-family: Century Gothic, Bold;
}

.bestseller{
    display: flex;
    justify-content: center;
    font-size: 35px;
    font-style: italic;
}
.recentlyviewed,#hair,#ulthair,#lip{
    font-size: 25px;
    font-style: italic;

}
.recentlyviewed{
    padding-right: 3px;
    color: fuchsia;
}

.container{
    display: block;
    margin: 0 auto;
    width: 70%;
    height: 100%;
}
.container img{
    width: 90%;
    height: 60%;
}
.row1,.row2,.row3{
    display: flex;
    flex: 0 0 33%;
}
.element1,.element2,.element3{
    position: relative;
}


.row2{
    margin-top: 15px;
}
.loupe{
    opacity: 0;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color:blanchedalmond;
background-image:url("../images/loupe.png");
}

.element1:hover .loupe,.element2:hover .loupe,.element3:hover .loupe{
    opacity: 1;
}
.productname{
    font-size: medium;
    color: #000;
}
.companyname{
    font-size: small;
    color: lightgrey;
}
button{
    background-color: brown;
    border: none;
    cursor: pointer;
    color: white;
    height: 28px;
}

.productlink{
    text-decoration: none;
}

.wtsp{
    position: fixed;
    bottom: 0px;
    right: 10px;
    text-decoration: none;
}
.reviews{
    width: 90px;
    height: 30px;
    background-color: palevioletred;
    border: none;
    border-radius: 10px;
    transform: rotate(90deg);
  
    position: fixed;
    top:50%;
    right: 0px;
    cursor: pointer;
}




.menubar{
    justify-content: center;
    align-items: center;
    width: 100vw;
    display: flex;
  
    position: relative;
  
  
  }
  .menubar ul{
    list-style: none;
    display: flex;
  }
  
  .menubar ul li{
    padding: 20px 20px;
    position: relative;
  }
  
  .menubar ul li a{
    color: aliceblue;
    font-size: 20px;
  }
  
  
  
  .allproductsctnt,.abtusctnt{
    display: none;
    background-color: palevioletred;
  
    position: absolute;
    top: 100%;
    left: 0;
  }
  .allproductsctnt ul li,.abtusctnt ul li{
    display: block;
  }
  .menubar ul li:hover .allproductsctnt, .menubar ul li:hover .abtusctnt{
    display:block;
  }
  
  .pink{
    background-color: pink;
  }
  .pink:hover{
    background: palevioletred;
    transition: 0.5s;
  }
  .top-header{
    display: flex;
    justify-content: space-around;
    font-size: 35px;
    color: white;
  }
  a{
    text-decoration: none;
  }  