
body {
  background-color:  hsl(30, 38%, 92%);
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-container {
  width: 40%;
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
}

.row-con {
  height: 100%;
}

.image-container {
  height:100%;
}

.image-container img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.description-container {
  height: 100%;
}

.description-container p {
  margin-top: 1rem;
}

.description-container h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 30px;
}

.price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: hsl(158, 36%, 37%);
}

.orginal-price {
  text-decoration: line-through;
  font-family: "Montserrat", sans-serif;
}

.btn-add {
  padding: 0.5rem 0;
  width: 100%;
  background-color: hsl(158, 36%, 37%);
  color: hsl(0, 0%, 100%);
  border-radius: 10px;
  border: none;
  display: flex;
  justify-content: center;
  gap:1rem;
  align-items: center;
}

.btn-add:hover{
  background-color:hsl(158, 42%, 18%);
}

@media (min-width:992px) and (max-width:1338px) {
  body {
    height: 100vh;
    font-size: 17px;
  }
  .item-container {
    width: 80%;
  }

  .description-container {
    height: inherit;
    padding: 2.5rem 2rem;
    
  }

  p:first-of-type {
    margin-top: 0;
  }
  
  .image-container img {
    border-radius:10px 0 0 10px;
    height: 430px;
  }

  .price {
    margin-bottom: 1rem;
  }
}

@media (max-width:991px) {
  body {
    height: 100%;
    margin: 2rem 0;
  }

  .item-container {
    width: 65%;
  }

  .description-container {
    padding: 3rem;
  }

  .image-container img {
    height: 400px;
    border-radius: 10px 10px 0 0 
  }
}

@media (max-width:598px) {
  body {
    height: 100%;
    margin: 2rem 0;
  }

  .item-container {
    width: 90%;
  }

  .description-container {
    padding: 2rem;
  }

  .image-container {
    padding: 0;
  }

  .image-container img {
    width: 100%;
    height: 300px;
    border-radius: 10px 10px 0 0 
  }
}