
body{
    min-height: 100vh;
}
body, main{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(30, 38%, 92%);
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35rem;
    height: 400px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
}
img{
    max-width: 100%;
    max-height:100%;
    border-radius:10px 0 0 10px;
}
.text{
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem;
   
}
p{
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    margin:1rem 0 0 0;
    color: hsl(228,12%,48%);
}
h1{
    font-family: 'Fraunces', sans-serif;
    margin: 0;
  
}
.price{
    display: flex;
}
button{
    display: flex;
    justify-content: center;
    background-color: rgb(7, 73, 49);
    padding: 0.5rem 2rem 0.5rem 2rem;
    color: white;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 30px;
}
.cart{
    padding-right: 0.5rem;
}
button:hover{
    background-color: hsl(158,36%,37%);
    cursor: pointer;
}
h2{
    margin: 0;
    font-size: 14px;
    text-decoration: line-through;
    color: hsl(228,12%,48%);
    padding-left: 1rem;
}
.price{
    margin:1rem 0 1rem 0;
}
.newp{
    color: hsl(158,36%,37%);
}
@media (max-width:480px){
    .container{
        flex-direction: column;
        width: 90%;
        height: 80%;
    }
    .image{
        border-radius: 10px 10px 0 0;
    }
}

