* {
    margin: 0;
    padding: 0;

}

body {
    background: hsl(30, 38%, 92%);
    font-size: 14px;
}

.container {
    width: 36.5rem;
    height: 27rem;
    background-repeat: 5px;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: 5rem;
    margin: auto;
    display: flex;

}

.img-container{


}

.mobile {
    display: none;
}

.img-container img {
    width: 18rem;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.text-container {
    width: 240px;
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: hsl(0, 0%, 100%);
    padding: 30px;
}

h1 {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 12px;
    color: hsl(228, 12%, 48%);

}

h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
}

p {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
    color: hsl(228, 12%, 48%);
    line-height: 180%
}

h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color:hsl(158, 36%, 37%);
    font-size: 27px;
    margin-right: 20px;
}

h4 {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    text-decoration: line-through;
}

.price {
    width: 190px;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

button {
    width: 225px;
    height: 40px;
    background: hsl(158, 36%, 37%);
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat';
    color: white;
    font-size: 16px;
}
button img {
    margin-right: 5px;
}

@media only screen and (max-width: 600px) and (min-width: 340px) {

body {
}

.container {
    margin: 2.5em;
    width: 60%;
    height: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    min-height: fit-content;
    max-height: fit-content;
    margin-bottom: -14px;
    margin: auto;

}

.desktop{
    display: none;
}

.mobile {
    display: block;
}

.text-container {
    border-radius: 0 0 10px 10px;
    width: 84%;
}

.img-container img {
    width: 104%;
    border-radius: 10px 10px 0 0 ;
}