/* General Page Styling */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(246, 170, 181);
    font-family: Arial, sans-serif;
    height: 100vh;
    margin: 0;
    text-align: center;
}

/* White Rounded Box */
.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* Heading */
h1 {
    font-size: 2em;
    color: red;
}

/* Button Styling */
button {
    padding: 10px 20px;
    font-size: 1.2em;
    margin: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Yes Button */
#yes {
    background-color: rgb(195, 247, 195);
}

/* No Button */
#no {
    background-color: lightcoral;
    color: white;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Shaking Animation */
@keyframes shake {
    0% { transform: translate(0px, 0px); }
    25% { transform: translate(-5px, 5px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-5px, -5px); }
    100% { transform: translate(5px, 5px); }
}

.shake {
    animation: shake 0.2s infinite;
}

/* Evil Face Emoji Animation */
.evil-face {
    position: absolute;
    font-size: 2rem;
    animation: fly 1s linear;
    pointer-events: none;
}

@keyframes fly {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Footer Styling */
footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    font-size: 14px;
}
