body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff;
    text-align: center;
    padding: 20px;
}

.logo-image {
    width: 150px
}

.question {
    font-size: 34px;
    margin: 20px;
}

button {
    width: 100px;
    padding: 10px;
    margin: 10px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    background-color: #add8e6;
}

.correct {
    background-color: #90ee90;
}

.correct-count {
    color: #069f06;
}

.wrong {
    background-color: #ffcccb;
}

.wrong-count {
    color: #e51915;
}

.counters {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 20px;
}

#timeBar {
    height: 20px;
    width: 100%;
    background-color: green;
    transition: width 1s linear;
}

.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 30px;
}

.time-remaining, .score, .level {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: yellowgreen;
}

.time-remaining {
    flex-basis: 2;
}