* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

.container {
    display: flex;
    flex-direction: row;
    margin-top: 60px;
}

img {
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
    max-width: 100%
}

img {
    border: 0 none;
    width: 100%;
    /* height: auto */
}

.price {
    color: #242424;
    background-color: #f8f8f8;
    height: 800px;
    width: 1000px;
    margin-right: 150px;
}

.price-container {
    margin: 50px 0 0 50px;
}

.container-img {
    margin-left: 150px;
    margin-right: 30px;
}

h1 {
    font-size: 26px;
    text-transform: normal;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-size: 25px;
    text-transform: normal;
    font-weight: 700;
    letter-spacing: 1px;
}

.glass {
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 50%;
    cursor: crosshair;

    /* Multiple box shadows to achieve the glass effect */
    box-shadow:
        0 0 0 7px rgba(255, 255, 255, 0.85),
        0 0 7px 7px rgba(0, 0, 0, 0.25),
        inset 0 0 40px 2px rgba(0, 0, 0, 0.25);

    /* hide the glass by default */
    display: none;
}