* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 500;
    color: hsl(228, 12%, 48%);
    background-color: hsl(30, 38%, 92%);
}

.perfume-container {
    display: flex;
    margin: 150px auto;
    background-color:hsl(0, 0%, 100%);
    height: auto;
    border-radius: 10px;
    width: 550px;
    gap: 29px;
}

img {
    height: 380px;
    width: 291px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: block;
}

.card-details { 
    flex-direction: column;
    display: flex;
    padding-top: 15px;
    gap: 20px;
    align-items: flex-start;
    margin-right: 28px;
    height: auto;
}

h1 {
    font-family: "Fraunces";
    color: hsl(212, 21%, 14%);
    line-height: 30px;
}

.details {
    line-height: 20px;
}

#category {
    letter-spacing: .35em;
}

.pricing h1 {
    color:hsl(158, 36%, 37%);
}

.card-details .pricing {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 25px;
    padding: 0rem -1rem;
}

.cart{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

button {
    border: none;
    background-color: hsl(158, 36%, 37%);
    color: hsl(0, 0%, 100%);
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 600;
    transition-duration: 0.4s;
    width: 235px;
    height: 46px;
    border-radius: 10px;
    align-items: center;
}

button:hover {
    background-color: #1a4031;
}

.cart-icon{
    width: 15px;
    height: auto;
    display: flex;
    margin-left: -12.5em;
}

@media screen and (max-width: 1000px ){
    .perfume-container {
        flex-direction: column;
        margin: 35px auto;
        background-color:hsl(0, 0%, 100%);
        height: 440px;
        border-radius: 10px;
        width: 585px;
        gap: 29px;
    }
}

@media screen and (max-width: 950px ){
    .perfume-container {
        flex-direction: column;
        margin: 35px auto;
        background-color:hsl(0, 0%, 100%);
        height: auto;
        border-radius: 10px;
        width: 340px;
        gap: 0px;
    }

    img {
        height: auto;
        max-width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0px;
    }

    br {
        display: none;
    }

    .details {
        padding: 0px 0px;
        word-spacing: 1px;
        line-height: 20px;
    }

    .card-details { 
        flex-direction: column;
        display: flex;
        height: auto;
        padding-top: 10px;
        margin: 10px 21.5px;
        padding-bottom: 15px;
      
    }

    .card-details .pricing {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 20px;
        padding-bottom: 0px;
    }
   
    button {
        width: 297px;
        height: 46px;
        border-radius:10px;
        align-items: center;
        padding-bottom: 0px;
        font-size: 16.5px;
        font-family: "Montserrat";
        font-weight: 700;
    }

    .cart-icon{
        width: 15px;
        height: 16px;
        display: flex;
        margin-left: -15.5em
    }
}


