body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-align: center;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: moveBackground 10s infinite alternate;
}

@keyframes moveBackground {
    0% { background-position: left top; }
    100% { background-position: right bottom; }
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    animation: popIn 0.8s ease-out;
}

button {
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background 0.3s;
}

#yes-btn {
    background-color: #ff4081;
    color: white;
    box-shadow: 0px 0px 10px rgba(255, 64, 129, 0.6);
}

#yes-btn:hover {
    transform: scale(1.1);
    background-color: #ff1744;
}

/* No Button Animations */
#no-btn {
    background-color: #666;
    color: white;
    position: relative;
}

#no-btn:hover {
    transform: scale(0.8) rotate(5deg);
    background-color: red;
}

#no-btn:active {
    transform: scale(0.5);
}

#typing-text {
    font-size: 2em;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid transparent;
    display: inline-block;
    animation: typing 3s steps(20) infinite alternate;
}

/* Typing Animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
