/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
}

h1 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.level-selection button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
    font-size: 16px;
}

.level-selection button:hover {
    background-color: #45a049;
}

#question {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

input {
    padding: 10px;
    width: 80%;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

#timer {
    font-size: 18px;
    color: #ff0000;
}

#score {
    font-size: 20px;
    color: #333;
}

#score span {
    font-weight: bold;
    color: #4CAF50;
}

#exitButton {
    background-color: #f44336; /* Rouge */
    color: white;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

#exitButton:hover {
    background-color: #d32f2f;
}

#exitButton:focus {
    outline: none;
}
