*{
    margin: 0;
    padding: 0
}
body {
    background-color: #2CB1BC;
    color: white;
    font-family: 'Montserrat',sans-serif;
    font-weight: bold;
}
#container {
    background-color: pink;
    margin-top: 40px;
    margin-left: 200px;
    margin-right: 200px;
    padding: 10px 30px;
    display: flex;
    flex-direction: column ;
    justify-content: space-around
}
#container h2 {
    align-self: flex-end
}
/****************** Products ******************/
#products{
    display: flex;
    flex-direction: column;
    background-color: pink;
    color:#2CB1BC
}
.product {
    display: flex;
    justify-content: space-between;
    padding: 15px 15px 15px;
}
.item {
    display: flex;
    width: 200px;
    align-items: center;
    justify-content: center;
}
.item > img {
    width:150px
}
.item >button {
    width: 34px;
    height: 34px;
    margin: 5px;
    border: 0pt transparent;
    border-radius: 50%;
    background-color: #efefef;
    font-size: 18px;
    color:#2CB1BC;
    outline: 0;
    cursor: pointer;
}
.item >button:hover {
    background-color: #2CB1BC;
    color:#efefef
  }
.item > .qte {
    height: 25px;
    max-width: 75px;
    border: 0pt transparent;
    border-radius: 25px;
    background-color: #efefef;
    font-size: 18px;
    color:#2CB1BC;
    outline: 0;
    padding: 5px;
    margin: 5px;
    text-align: center;
}
/****************** images overlay ******************/
.img-container{
    position: relative;
}
.image{
    display: block
}
  .overlay {
    position: absolute;
    height: 150px;
    width: 150px;
    opacity: 0;
    transition: .5s ease;
    background-color: #2CB1BC;
  }
  .img-container:hover .overlay {
    opacity: 1;
    cursor: pointer;
  }
  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  /****************** Icons ******************/
  .icons {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 50px;
      margin-right: -100px;
  }
  .fa-heart, .fa-times-circle{
      color: #2CB1BC;
  }
  .fa-heart:hover{
      color: red;
      cursor: pointer;
      animation: fa-spin 1s
  }
  .fa-times-circle:hover{
      cursor: pointer;
  }
.navbar{
    display: flex;
    align-items: center;
    padding: 20px;
    color: black;
}
/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
nav{
    flex: 1;
    text-align: right;
    color: black;
    font-size: 25px;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 20px;
}
a{
    text-decoration: none;
    color: black;
}
p{
    color: black;
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
  display: always;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  color: black;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content li a {

  color: blue;

}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.btn1 {
    background-color: #01BAEF;
    color: white;
    padding: 12px;
    margin: 10px 0;
    border: none;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    font-size: 17px;
    box-shadow: 0 0 1rem 0 rgba(99, 123, 150, 0.329);

}
.btn1:hover {
    background-color: #0CBABA;
  }
