
#maths_game h1 {
    font-size: 36px;
    color: rgb(95, 90, 90);
}

#maths_game p {
    font-size: 30px;
    margin: 10px 0;
    font-weight: bold;
}

#maths_game .options {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#maths_game .option {
    margin: 0 10px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: rgb(241, 241, 18);
    color: black;
    border: 1px solid #747474;
    border-radius: 5px;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

#maths_game .option:hover {
    background-color: rgb(248, 248, 42);
}

#maths_game button {
    margin-top: 20px;
    padding: 10px 25px;
    cursor: pointer;
    background-color: #55befe;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

#maths_game button:hover {
    background-color: #c7e9ff;
}

#maths_game .score {
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
    color: #27ae60;
}

#maths_game #timer {
    margin-top: 20px;
    font-size: 20px;
    color: #333;
    background-color: #54bdfe;
    padding: 10px 5px;
    border-radius: 5px;
    font-weight: bold;
}

#maths_game #highScore {
    margin-top: 20px;
    font-size: 25px;
    font-weight: bold;
    color: #27AE60FF;
}

#maths_game #result {
    margin-top: 20px;
    font-size: 24px;
    color: red;

}

#maths_game .incorrect {
    color: red;
}

#maths_game .correct {
    color: #27AE60FF;
}

/* Responsive Styles */
/*@media only screen and (max-width: 600px) {*/
/*    .container {*/
/*        width: 90%;*/
/*    }*/

/*    h1 {*/
/*        font-size: 28px;*/
/*    }*/

/*    p {*/
/*        font-size: 24px;*/
/*    }*/

/*    .option {*/
/*        font-size: 18px;*/
/*        padding: 5px 12px;*/
/*    }*/

/*    button {*/
/*        font-size: 18px;*/
/*        padding: 8px 20px;*/
/*    }*/

/*    .score {*/
/*        font-size: 20px;*/
/*    }*/

/*    #timer {*/
/*        font-size: 18px;*/
/*    }*/

/*    #highScore {*/
/*        font-size: 20px;*/
/*    }*/

/*    #result {*/
/*        font-size: 20px;*/
/*    }*/
/*}*/
