@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff; /* Light pinkish tint */
    font-family: "Nunito", sans-serif;
    flex-direction: column;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    color: #d32f2f;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* Helps when Yes button gets huge */
}

.yes-button {
    font-size: 1.5em;
    padding: 10px 25px;
    background-color: #fa0561;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.yes-button:hover {
    background-color: #e03777;
    transform: scale(1.05);
}

.no-button {
    font-size: 1.5em;
    padding: 10px 25px;
    background-color: #d3d3d3;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.gif_container img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.success-text {
    animation: bounce 0.8s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}