body {
    background-color: hsl(30, 38%, 92%);
    font-size: 14px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: hsl(0, 0%, 100%);
    display: flex;
    width: 596px;
    height: 505px;
    border-radius: 10px 10px;
}

.container img {
    width: 296.8px;
    height: 505px;
    border-radius: 10px 0px 0px 10px;
}

.textos .perfume {
    color: hsl(228, 12%, 48%);
    margin: 30px 0px 0px 27px;
    font-family: "Montserrat", serif;
    font-size: 14px;
    font-weight: 500;
}

.titulo h1 {
    color: hsl(212, 21%, 14%);
    font-family: "Fraunces", serif;
    margin: 27px;
    font-size: 32px;
}

.titulo p {
    color:hsl(228, 12%, 48%);
    font-family: "Montserrat", serif;
    margin: 40px 27px 0px 27px;
    font-weight: 500;
}

.preco {
    font-family: "Fraunces", serif;
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-left: 27px;
    gap: 25px;
    
}

.preco h1 {
    color: hsl(158, 36%, 37%);
    font-size: 35px;
}

.preco p {
    color:hsl(228, 12%, 48%);
    text-decoration: line-through;
}

 .button {
    background-color: hsl(158, 36%, 37%);
    margin: 30px 25px 0px 27px;
    width: 240px;
    height: 50px;
    border-radius: 10px 10px;
    border-color: transparent;
    font-family: "Montserrat", serif;
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    cursor: pointer;
    
}

.container button:hover {
  transition: 1.0s; background-color:hsl(159, 55%, 17%); 
}