body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff5f5;
    font-family: 'Indie Flower', cursive;
    overflow: hidden;
}

.container {
    text-align: center;
    background-color: #ffebee;
    padding: 40px;
    border-radius: 25px;  /* Increased border radius for a more rounded look */
    border: 3px solid #ff6b81;
    box-shadow: 0 8px 20px rgba(255, 107, 129, 0.3);
    max-width: 500px;  /* Increased container width */
    width: 90%;
    position: relative;  /* Position relative to allow absolute positioning of "No" button */
}

.header_text {
    font-size: 48px;  /* Increased header text size */
    color: #ff6b81;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(255, 107, 129, 0.2);
}

.gif_container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;  /* Increased gap between buttons */
    flex-wrap: wrap;
}
/* Button Style */
.btn {
    padding: 18px 40px;
    font-size: 26px;
    border: 2px solid #ff6b81;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ff6b81;
    color: white;
    font-family: 'Indie Flower', cursive;
    box-shadow: 0 6px 15px rgba(255, 107, 129, 0.3);
    min-width: 160px;
}

/* Remove hover and active states after click */
.btn:active,
#noButton:active {
    transform: none;
    background-color: #ff6b81;
    box-shadow: 0 6px 15px rgba(255, 107, 129, 0.3);
}

#noButton:hover {
    background-color: #ff4757;
    color: white;
    box-shadow: 0 6px 15px rgba(255, 107, 129, 0.4);
}

/* Mobile-First Design: Adjustments for smaller screen sizes */
@media (max-width: 600px) {
    .header_text {
        font-size: 40px;  /* Smaller header text for mobile */
    }

    .btn {
        padding: 16px 32px;  /* Adjusted padding for mobile */
        font-size: 22px;  /* Smaller font size on mobile */
    }

    /* Ensure buttons are stacked vertically on small screens */
    .buttons {
        flex-direction: column;
        gap: 15px;
    }
}
