:root{
    --clr-white : #fff;
    --clr-black : #000;
    /* Primary */
    --Dark-cyan: #3c8067;
    --Darker-cyan: #0b3d2b;
    --Cream: #f2ebe3;

/* ### Neutral */

    --Very-dark-blue: #1c232b;
    --Dark-grayish-blue: #6c7289;
    --White: #ffffff;
    /* font size */
    --ff-size: 14px;

    /* Family font */
    --ff-mont:'Montserrat', sans-serif;
    --ff-fra: 'Fraunces', serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display:flex;
    justify-content: center;
	align-items: center;
	flex-direction: column;
    background-color: var(--Cream);
	transition: all 1s ease-in-out;
}
.attribution { 
    font-size: 20px; 
    text-align: center;
	margin-top: 3rem;
	font-family: var(--ff-mont);
}
.attribution a { 
    color: hsl(228, 45%, 44%);
	font-family: var(--ff-fra);
	text-decoration: none;
}
.hero{
    width: 360px;
    height: 90vh;
    margin-top: 10px;
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.hero img{
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.hero :is(h5, p){
    font-size: var(--ff-size);
    font-family: var(--ff-mont);
    color: var(--Dark-grayish-blue);
    font-weight: 500;
    font-size: var(--ff-size);
    line-height: 1.5rem;
}
.hero .left .perfume{
    letter-spacing: 5px;
    text-transform: uppercase;

}
.hero .left{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-left: 4rem;
}
.hero .left h1{
    font-family: var(--ff-fra);
}
.hero .left .price{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    /* justify-content: ; */
    align-items: flex-end;
    margin-bottom: 1rem;
}
.hero .left .price .price-tag{
    font-size: 2rem;
    padding-right: 1.2rem;
    color: var(--Dark-cyan);
    font-family: var(--ff-fra);
}
.hero .left .price .price-tag-2{
    text-decoration: line-through;
    padding-left: 1rem;
}
.hero .left .done-btn{
    width: 80%;
    height: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    color: var(--clr-white);
    font-family: var(--ff-mont);
    border-radius: 7px;
    background-color: var(--Dark-cyan);
    margin-bottom: 1rem;
}
.hero .left .done-btn:hover{
    background-color: var(--Darker-cyan);
    cursor: pointer;
}
.hero .left .done-btn i{
    margin: .5rem;
}
@media screen and (min-width: 768px){
    .hero{
        width: 700px;
		height: 30rem;
        flex-direction: row;
    }
    .hero img{
        width: 60%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px 0px 0px 10px;
    }
	.hero .left{
		width: 50%;
		justify-content: space-around;
		margin-left: 2rem;

	}
	.hero .left .perfume{
		margin-top: 1rem;
	}
	br{
		display: none;
	}
	.hero .left h1{
		width: 80%;
	}
	.hero .left .discrip{
		width: 85%;
	}	
}
    
