body {
    display: flex;
    justify-content: center; /* Horizontal centering of the container */
    align-items: center;     /* Vertical centering of the container */
    min-height: 100vh;       /* Full viewport height */
    margin: 0;
    padding: 20px;           /* Add some padding for smaller screens */
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; /* Optional: Nice font */
    background-color: #ffe6e6; /* Optional: Light pink background */
}

.container {
    text-align: center;      /* Centers text */
    display: flex;
    flex-direction: column;  /* Stacks heading, image, buttons */
    align-items: center;     /* Centers items within the flex container */
    max-width: 600px;
}

img {
    max-width: 100%;
    height: auto;
    max-height: 300px;       /* Keeps images from getting too tall */
    margin: 20px 0;
    border-radius: 10px;     /* Optional: rounded corners */
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;     /* Keeps buttons centered relative to each other as one grows */
    gap: 20px;               /* Space between buttons */
    flex-wrap: wrap;         /* Allows buttons to stack if Yes gets too huge */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* #yes-button {
    background-color: #4CAF50; 
    color: white;
}

#no-button {
    background-color: #f44336; 
    color: white;
}*/