*{
    margin: 0;
    padding: 0;
}
i{
    color: red;
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-container{
    position: relative;
    overflow: hidden;
    height: 300px;
    margin: 10px 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.heart-animation{
    position: absolute;
    font-size: 5rem;
    /* height: 100%;
    width: 100%; */
    animation: blink 0.7s forwards;
    transform: scale(1) translate(-50%,-50%);

}
.img-container img{
    height: 100%;
    width: auto;
}
.info-container{
    width: 100%;
    text-align: right;
}
@keyframes blink {
    to{
        transform: scale(2) translate(-50%,-50%);
        opacity: 0;
    }
}