*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(244, 237, 229);
}

.container{
width: 35%;
height: 400px;
/* border: 1px solid black; */
margin-top: 200px;
display: flex;

}
.left{
    width: 50%;
    height: 100%;
    /* border: 1px solid black; */
    background-image: url("./image-product-desktop.jpg");
    background-size: cover;
    border-radius: 10px 0px 0px 10px;
}
.right{
     width: 50%;
    height: 100%;
    /* border: 1px solid black; */
    padding: 25px;
    background-color: white;
    border-radius: 0px 10px 10px 0px;
}
#head{
    font-size: 11px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: gray;
    letter-spacing: 5px;
    font-weight: 500;

}
h1{
    font-family: 'Georgia', serif;
font-weight: bold;
font-size: 28px;
margin-bottom: 20px;
}
.container>.right>#par{
     font-size: 13px;
    margin-bottom: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: gray;
}
.price{

    display: flex;
    margin-bottom: 10px;
}

.price>#real{
    color: rgb(74, 134, 102);
    font-size:30px;
    font-weight: 800;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.price>.striked{
    font-size: 13px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: gray;
    font-weight: 500;
    margin-top: 10px;
    margin-left: 25px;
}
button{
    width: 100%;
    height: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    background-color: rgb(74, 134, 102) ;
    border-radius: 5px;
    color: white;
    border: none;
}