*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content > *{
    margin-bottom: 15px;
}
body{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #f3eae3;
}
.container{
    display: grid;
    grid-template: auto auto /1fr;
    border-radius: 10px;
    width: min(320px);
    background-color: #ffffff;
    overflow: hidden;
}

img{
    width: 100%;
}

.content{
    padding: 24px 24px 4px 24px;
    display: flex;
    flex-direction: column;
}
#price{
    display: flex;
    align-items: center;
}
#price>:first-child{
    font-size: 2em;
    font-weight: 700;
    color: #3d8168;
    margin-right: 20px;
}

p,button{
    font-family:  "Montserrat", sans-serif;

}
p{
    color: #717179;
    font-weight: 500;
}
#con{
    letter-spacing: 5px;
}
h1{
    font-family: "Fraunces", serif;
    font-weight: 700;
}
button{
    background-color: #3d8168;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px ;
}
svg{
    margin-right: 10px;
}
@media (min-width:576px){
    .container{
        grid-template: 1fr/1fr 1fr;
    }
    img{
        width: 100%;
        height: 100%;
    }
    .container{
        width: max(600px,300px);
    }
    .content> *{
        flex-grow: 1;
    }

}