*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.hero{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgb(231, 231, 221);
}



.first img{
    width: 300px;
    height: 300px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.second{
    flex-direction: row;
    width: 300px;
    height: 300px;
    background-color:white;
    padding: 10px 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.fume{
    color: cadetblue;
}

.second h3{
    margin-top: 10px;
}

.floral{
    margin-top: 20px;
    color: cadetblue;
    font-size: 13px;
}

.by{
    font-size: 13px;
}

.perf{
    font-size: 13px;
}

.for{
    font-size: 13px;
}
.second p{
    color: cadetblue;
}

.price{
    color: cadetblue;
    font-size: 30px;
    font-weight: 600;
    font-family: [Montserrat];
    margin-top: 20px;
}

sup{
    color: cadetblue;
    font-size: 10px;
    text-decoration: line-through;
}

button{
    background-color:cadetblue;
    padding: 8px 30px;
    color: white;
    border-radius: 10px;
    border: none;
    text-align: center;
    cursor: pointer;
    margin-top: 5px;
}


@media only screen and (max-width: 950px){
    
    .second{
        margin-top: -5px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .hero{
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        
    }

    .first img{
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}

