*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;   
    background: #a588e7;
}
.btn{
    padding: 10px 60px;
    background-image: url("hearts.gif");
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    border-radius: 40% 20px;
    
}
.popup{
    width: 400px;
    background-image: url("hearts.gif");
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: rgb(225, 194, 255);
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
} 
.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}
 
 .popup img{
    width: 500px;
    margin-top: -50px;
    border-radius: 50%;
}
.popup h2{
    font-size: 40px;
    font-weight: 500;
    margin: 30px 0px 10px;
}
.popup button{
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #f7c1f4;
    color: #a588e7;
    border: 0;
    outline: none;
}