body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    text-align: center;
}

h1 {
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.buttons {
    margin-top: 20px;
    position: relative;
    width: 300px;
    height: 120px;
}

.buttons {
    margin-top: 20px;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 120px;
}

#yes {
    background: #ff4f81;
    color: white;
    position: absolute;
    right: 10%;
}

#no {
    background: #ddd;
    color: black;
    position: absolute;
    left: 10%;
}

/* Love animation */
.love {
    position: fixed;
    top: -50px;
    font-size: 24px;
    animation: fall linear infinite;
    pointer-events: none;
}

@keyframes fall {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}
