*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font: inherit;
}
body {
    background-color: #f2eae2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Fraunces", serif;
}
.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: 100%;
}


.data > h3 {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5px;
    color: #6c7289;
}
.data > h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    color: #1c232b;
    margin-block: 24px;
}
.data p {
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #6c7289;
    max-width: 237px;
    margin-block: 24px;
}
.container2 {
    display: flex;
    flex-direction: column;
    padding: 32px;
}
.price {
    display: flex;
    justify-content: flex-start;
}
.price h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    color: #3d8168;
    padding-right: 20px;
}
.price h3 {
    font-size: 13px;
    font-weight: 500;
    line-height: 32px;
    color: #6c7289;
    text-decoration-line: line-through;
}
.cart {
    width: 15px;
    height: 16px;
    position: absolute;
    bottom: 28%;
    left: 55%;
}
button {
    width: 236px;
    height: 48px;
    border-radius: 8px;
    background-color: #3d8168;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-block:32px ;
}
button:hover {
    background-color:rgba(26, 64, 50, 1) ;
    cursor: pointer;
}

    
