*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
}
body{
    background-color: pink;
}
.container{
    width: 100%;
    min-height: 100%;
    background: pink;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.text{
    font-size: 2rem;
}
.hello{
    width: 20%;
}
.abs{
    position: absolute;
    
}
.img{
    max-width: 80%;
}
.message{
    background-color: rgb(204, 18, 18);
    width: 50%;
    height:300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    color: white;
    border-radius: 20px;
    box-shadow: 20px 20px 0px  rgba(0, 0, 0, 0.219);
}
.yes{
    width: 120px;
    height: 40px;
    border-radius:20px ;
    border:none;
    font-size: 1.1rem;
    margin-top: 20px;
    border: 2px solid white;
    background-color: white;
    cursor: pointer;
    transition: background 0.5s;
}

.heading{
    font-size: 2.5rem;
}
.yes:hover{
    background-color: transparent;
    color: white;
}
.love-2{
    opacity: 0;
    z-index: -1;
}

@media screen and (max-width: 786px) {
    .message{
        width: 90%;
    }
    .heading{
        font-size: 1.5rem;
    }
    .hello{
        width: 50%;
    }
}