
*{
    margin: 0;
    padding: 0;
}

body{
    background-color: hsl(30, 38%, 92%);
    display: grid;
    place-content: center;
    margin-top: 10%;
}



.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: hsl(0, 0%, 100%);
    border-radius: 0.5em;
    overflow: hidden;
    max-width: 600px;
    margin-bottom: 50%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6{
    overflow-wrap: break-word;
}

img,
picture,
svg{
    display: block;
    max-width: 100%;
}

.perfumeImg{
    border-radius: 0.5em;
}

@media(max-width: 600px){
    .container{
       grid-template-columns: 1fr;
    }

    .perfumeButton{
        margin-bottom: 20px;
    }
}

.textContainer{
    padding-left: 1rem;
}


.hPerfume{
    margin-top: 20px;
    margin-bottom: 20px;
    color: hsl(228, 12%, 48%);
    font-family: "Montserrat";
    letter-spacing: 5px;
}

.perfumeName{
    margin-bottom: 30px;
    font-family: "Fraunces";
    max-width: 70%;
}

.perfumeText{
    margin-bottom: 30px;
    color: hsl(228, 12%, 48%);
    max-width: 80%;
}

.prices{
    margin-bottom: 20px;
}

.perfumeButton{
    
    padding: 5% 28%;
    background-color: hsl(158, 36%, 37%);
    border: none;
    border-radius: 0.5em;
    margin-left: 8px;
}

.perfumeCart{
    color: white;
    margin:auto;
    margin-right: 10px;
}

.buttonSpan{
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: white;
}

.prices{
    display: flex;
    align-items: center;
}

.secondPrice{
    font-family: "Fraunces";
    font-weight: 700;
    color: hsl(158, 36%, 37%);
    font-size: 1.8em;
    margin-right: 20px;
}

.firstPrice{
    color: hsl(228, 12%, 48%);
    text-decoration: line-through;
}

