@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: hsl(30, 38%, 92%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  width: 340px;
  margin: 10px auto;
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
  display: flex;
    
}
.img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.Perfume {
  color: hsl(228, 12%, 48%);
  letter-spacing: 1.5px;
  font-size: 16px;
  margin: 20px 0 0 10px;
  text-transform: uppercase;
}
h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  margin: 10px 15px;
}
p {
  font-weight: 500;
  font-size: 15px;
  color: hsl(228, 12%, 48%);
  margin: 0 10px 10px;
}
.price span {
  font-family: "Fraunces", serif;
  font-size: xx-large;
  font-weight: 700;
  margin: 15px;
  color: hsl(158, 36%, 37%);
}
button {
  display: block;
  margin: 10px auto 20px;
  background-color: hsl(158, 36%, 37%);
  padding: 10px;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 90%;
}
button:hover {
  cursor: pointer;
  background-color: hsl(158, 42%, 18%);
}
@media max- {
    
}
@media (min-width:375px) and (max-width: 1440px) {
    .container {
        width: 480px;
        flex-direction: row;
        
    }
    .img{
        width: 100%;
        height: 100%;
        border-radius: 10px 0 0 10px;
        object-fit: fill;
        src: url("./images/image-product-desktop.jpg");
    }
}
