@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500&display=swap');
*{
    box-sizing: border-box;
    padding:0;
    margin: 0;
}
.section{
    background-color: hsl(30, 38%, 92%);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maindiv{
    height: 65vh;
    width: 50vw;
    border-radius: 15px;
    display: flex;
}
.img_div{
    width: 370px;
    background-color: rgb(163, 105, 30);
    border-radius: 15px 0px 0px 15px;

}
.text_div{
    width: 370px;
    background-color: #fff;
    border-radius: 0px 15px 15px 0px;
    padding: 40px;
}
img{
    height: 65vh;
    width: 370px;
    border-radius: 15px 0px 0px 15px;
    object-fit: cover;
}
.title{
    font-family: 'Montserrat', sans-serif;
    color: hsl(228, 12%, 48%);
    margin-bottom: 20px;
}
.heading{
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: bold;
    padding-right: 10px;
    margin-bottom: 40px;
    line-height: 100%;
}
.content{
    font-family: 'Montserrat', sans-serif;
    color: hsl(228, 12%, 48%);
    font-size: 15px;
    font-weight: 500;
    padding-right: 10px;
    margin-bottom: 30px;
}
.price{
    display: block;
    margin-bottom: 30px;
}
.price_main{
    display: inline;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Fraunces', serif;
    color: hsl(158, 36%, 37%);
    margin-right: 30px;
}
strike{
    color: hsl(158, 36%, 37%);
    font-family: 'Fraunces', serif;
}
.button{
    height: 50px;
    width: 280px;
    border-radius: 10px;
    border-style: none;
    background-color: hsl(158, 36%, 37%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: small;
    font-weight: bold;
}