/* style.css */

body {
    font-family: 'Times New Roman', Times, serif;
    text-align: center; 
    margin: 0; 
    background-color: #FADADD; /* Set background color to light pink */
}

#container {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    height: 100vh; 
}

#image-container {
    /* This container will hold the images */
}

#question {
    font-family: 'Sacramento', cursive;
    font-size: 52px; 
}

#options {
    margin-top: 20px; /* Add space above the options */
}

button {
    padding: 10px 20px; 
    margin: 0 10px; 
    font-size: 26px; 
    font-family: 'Sacramento', cursive; 
    background-color: #FB607F; 
    color: white; 
    border-radius: 25px;
    cursor: pointer; 
}