*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    position: fixed;
    top: 90px;
    left: 150px;
    right: 200px;
    display: flex;
    align-items: center;
    width: 20%;
    height: 30vh;
    justify-content: center;
    background: #e80202;
    overflow: hidden;
}
.heart{
    position: absolute;
    width: 15px;
    height: 15px;
    background: #e80202;
    box-shadow: 20px 20px 40px rgba(0,0,0, 0.2);
    transform: rotate(45deg);
}
.heart::before{
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background:#e80202;
    border-radius: 50%;
    box-shadow: 0 -20px 20px rgba(0,0,0,0.1);
}
.heart::after{
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #e80202;
    border-radius: 50%;
    box-shadow: -20px 0 20px rgba(0,0,0,0.1);
}

h2{
    text-align: center;
    color: white;
    font-size: 5vw;
    line-height: 1em;
    z-index: 1000;
    font-weight: 900;
}
/*  */
/* .block{ */
    /* position: absolute; */
    /* width: 50px; */
    /* height: 100px; */
    /* background: #e80202; */
    /* box-shadow: 10px 10px 50px rgba(0,0,0,0.1); */
/* } */