@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');

body {
    background-color: rgb(255, 241, 238);
}

.container {
    background-color: white;
    height: 500px;
    width: 666px;
    border-radius: 12px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    display: flex;
}

.perfume {
    font-family: "Montserrat";
    color: black;
    width: auto;
    font-weight: 300;
}

.img-product {
    height: 500px;
}

.name {
    font-family: "Fraunces";
    font-size: 40px;
    margin-top: 0;
    font-weight: 700;
    margin-bottom: 25px;
}

.text-content {
    display: flex;
    margin-left: 40px;
    flex-direction: column;
}

.description {
    margin-top: 0;
    font-family: "Montserrat";
    margin-right: 40px;
    font-weight: 500;
    font-size: 15px;
    color: gray;
}

.price {
    color: hsl(158, 36%, 37%);
    font-size: 35px;
    font-family: "Fraunces";
    margin-top: 10px;
    font-weight: 700;
    margin-bottom: 0;
}

.sale {
    position: relative;
    top: -45px;
    left: 160px;
    font-family: "Montserrat";
    color: gray;
    text-decoration:line-through;
    margin-bottom: 0;
    font-size: 15px;
}

.buy-button {
    background-color: hsl(158, 36%, 37%);
    color: white;
    height: 50px;
    margin-right: 40px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.buy-button-text {
    margin-top: -6px;
    position: relative;
    font-family: "Montserrat";
    font-weight: 500;
}

.cart {
    position: relative;
    right: 62px;
    top: 16px;
}

.buy-button:hover {
    transform: scale(1.05);
}