
body{
  background-color: #fef5f9;
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  text-decoration: none;
}
.title{
  align-items: center;
  text-align: center;
  color: #e2035c;
}
.section-p1{
  padding: 40px 80px;
}
h1{
  font-size: 35px;
}
h2{
  font-size: 20px;
}
h3{
  font-size: 17px;
}


/* BANNER IN HOME PAGE */
.bannerh1{
  color: #220913;
  font-size: 35px;
  margin-bottom: 3px;
}
.bannerh2{
  font-size: 20px;
  color: #fbfafa;
  background-color: #efe702;
  border-radius: 50px;
  padding: 10px;
}
.bannerh3{
  font-size: 17px;
  margin-bottom: 15px;
  color: #1f201d;
}


/* TOP NAVIGATION */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background:#fef5f9;
  box-shadow: 0 1px 15px rgb(251, 194, 223);
  z-index: 999;
  position: static;
  top: 0;
  left: 0;
}
.logo{
  width: 60px;
  cursor: pointer;
  margin-right: 180px;
}
.logo:hover {
  background-color: #f9a5c7;
  border-radius: 15px;
}

/* Create a top navigation bar with a black background color  */
.topnav {
  list-style: none;
  background-color: #fef5f9;
  overflow: hidden;
  margin-right: 10px;
}
.topnav li{
  display:inline-block;
}
/* Style the links inside the navigation bar */
.topnav li a {
  transition: all 0.3 ease 0s;
  color: #fd5799;
  text-decoration: none;
  font-size: 17px;
  padding: 5px 5px;
}

/* Change the color of links on hover */
.topnav li a:hover {
  background-color: #f9a5c7;
  border-radius: 50px;
  color: black;
  padding: 20px 10px;
}

.material-symbols-outlined {
  color: #fd5799;
  transition: all 0.3 ease 0s;
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 20
}
.material-symbols-outlined:hover {
  color: #340116;
  background-color: #f9a5c7;
  border-radius: 50px;
  padding: 10% 0px;
}



/* MEDIA QUERIES */
@media only screen and (max-width: 600px) {

  .body {
  width: 100%;
  }
}

@media only screen and (min-width: 601px) and (max-width: 768px) {

  .body {
  width: 100%;
  }

}

/*  <600px, 601px, 768, 992px, 1200px */


/* HOME PAGE */

/* BANNER */
#banner{
  background-image: url("/images/items/multi-ring-transparent.png");
  width: 100%;
  height: 80vh;
  background-size: cover;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bannerbutton{
  border: 0;
  color: #fd1388;
  padding: 20px 20px;
  font-size: 20px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 600;
  background-color: #fde2ef;
  box-shadow: #fe448e;
  border-radius: 90px;
  margin-top: 10px;
}
.bannerbutton:hover{
  background-color: #f28db6;
  color: #ffffff;
  box-shadow: #f9a5c7;
}

/* Popular Now */
.popular{
  font-size: x-large;
}

.pro-container{
  text-align: center;
}

#product1 .pro{
  width: 23%;
  min-width: 250px;
  padding: 10px 15px;
  border: 1px solid #fdcde1;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 5px 5px 20px #fcbed6;
  margin: 15px 0;
}
#product1 .pro:hover{
  background-color: #fcbbd5;
  padding: 10px 10px;
  border-radius: 15px;
  box-shadow: 15px 15px 20px #fbcbde;
}
#product1 .pro img{
  width: 100%;
  border-radius: 15px;
}
#product1 .pro .description{
  margin-top: 10px;
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .description span{
  font-size: 15px;
  color: #fd5799;
}
#product1 .pro .description h4{
  padding: 5px 0;
  font-size: 17px;
}
#product1 .pro-container{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}








/* ABOUT PAGE */
.about, .about:before, .about:after {
  box-sizing: inherit;
  margin: 40px;
  justify-items: center;
}

.column {
  float: left;
  width: 31%;
  margin-bottom: 16px;
  padding: 0 8px;
}
.column:hover{
  background-color: rgb(253, 233, 236);
}
.img-card{
  padding: 10px;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
  }
  .row{
    width: 70%;
  }
}
.namecard{
  font-size: large;
  font-weight: 600;
  margin-top: 10px;
}
.desc-card{
  margin-top: 10px;
  margin-bottom: 10px;
}
.job{
  font-style: italic;
}

.card {
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
}

.container {
  padding: 0 16px;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.button-card {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: rgb(243, 242, 242);
  background-color: #ffaaaa;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button-card:hover {
  background-color: #fc6262;
}