* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: #ffb6c1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

h1 {
    color: white;
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.buttons {
    display: flex;
    gap: 20px;
}

button {
    padding: 12px 25px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

#yes {
    background: #ff4d6d;
    color: white;
}

#no {
    background: white;
    position: relative;
}

.tooltip {
    position: fixed;
    color: white;
    font-size: 20px;
    display: none;
    top: 15%;
    background-color: #fe6a84;
    padding: 14px;
    border-radius: 14px;
}

.message {
    display: none;
    font-size: 40px;
    color: white;
    text-align: center;
}

/* hearts */

.heart {
    position: absolute;
    bottom: -20px;
    animation: float 6s linear infinite;
    z-index: -1;
}

@keyframes float {

    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh);
        opacity: 0;
    }

}