*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: pink;
}
h1{
    font-size: 30px;
    width: 100%;
    text-align: center;
}
.LOVE{
    color: red;
}
.container{
    height: 400px;
    width: 450px;
    background-position: center;
    background-size: cover;
    background-image: url("heart.jpg");
    box-shadow: 0 0 50px black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    color: lavender;
}
.btn-div{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.btn-div .btn{
    height: 50%;
    background: white;
    display: flex;
    align-items: center;
    font-weight: 1000;
    justify-content: center;
    color: black;
    text-transform: uppercase;
    width: 120px;
    cursor: pointer;
    box-shadow: 0 0 20px black;
    border-radius: 10px;
    transition: 0.1s all;
}