body {
    background-color: #ffb6c1; /* Soft pink */
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Make sure the page fills the entire viewport */
    margin: 0; /* Remove default body margin */
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff; /* Optional: Add a white background to the container */
    border-radius: 10px; /* Optional: Round the corners of the container */
}

.container2 {
    text-align: center;
    padding: 20px;
    background-color: #fff; /* Optional: Add a white background to the container */
    border-radius: 10px; /* Optional: Round the corners of the container */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    position: relative;
    z-index: 3;
}

#question {
    color: #e91e63;
    position: relative; /* Added relative positioning */
    z-index: 3; /*Ensure it's above other elements*/
}

#answer {
    color: #e91e63;
    position: relative; /* Added relative positioning */
    z-index: 3; /*Ensure it's above other elements*/
}

h1 {
    color: #e91e63; /* Slightly darker pink/magenta for the heading */
}

.gif {
    max-width: 300px; /* Adjust as needed */
    margin: 20px auto;
    position: relative;
    z-index: 3;
    display: block;
}

.buttons {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 0 10px;
    border: none;
    background-color: #e91e63;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth background color change on hover */
}

button:hover {
    background-color: #c2185b; /* Darker shade on hover */
}

#yesButton {
    position: relative;
    z-index: 1;
}

#noButton {
    z-index: 5;
    position: relative; /* Important for moving the button */
}
