body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: background-color 0.5s ease;
}

#result {
    font-size: 10rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}


#update-question {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
}

.loading {
    background-color: #f0f0f0;
}

.yes {
    background-color: #4CAF50; /* Green */
    color: white;
}

.no {
    background-color: #F44336; /* Red */
    color: white;
}

#cors-note {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    background-color: #FFF3CD;
    color: #856404;
    padding: 10px;
    text-align: center;
    border: 1px solid #FFEEBA;
    margin: 0 auto;
    max-width: 80%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

#cors-note a {
    color: #0056b3;
    text-decoration: underline;
}

#api-error {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    text-align: center;
    border: 1px solid #f5c6cb;
    margin: 0 auto;
    max-width: 80%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}
