body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: pink;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.gif-container img {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #e91e63;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: 0.2s;
}

.yes {
    background-color: #4caf50;
    color: white;
}

.no {
    background-color: #f44336;
    color: white;
}

.hidden {
    display: none;
}

.heart {
    position: absolute;
    pointer-events: none;
}