.game-container{
    display: block;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

/*

        Score Bar

*/

.score-bar{
    display: flex;
    padding: 0;
    margin: auto;
    width: 300px;
    max-width: 90%;
    border: 1px solid #363945;
    height: 8px;
}

.score-bar-item{
    margin: 0;
    padding: 0;
    height: 8px;
    width: 10%;
    border-left: 1px solid #363945;
    border-right: 1px solid #363945;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.score-bar-wrong{
    background-color: #EF233C;
}
.score-bar-correct{
    background-color: #4CB944;
}

/*
        End Score Bar
*/
.success-text-container{
    position: absolute;
    left: 50%;
}
#success-text{
    position: relative;
    left: -50%;
    font-size: 70px;
}

.success-text-wrong{
    color: #EF233C;
}

.success-text-correct{
    color: #4CB944;
}

#success-text.animate__animated.animate__fadeOut{
    --animate-duration: 0.3s;
  }

.math-text-container{
    text-align: center;
    font-size: 20px;
}

.math-container{
    text-align: center;
    font-size: 35px;
}

input[type=text]{
    box-sizing: border-box;
    display: block;
    border: none;
    font-family: "Fredoka One";
    margin: auto;
    padding: 5px;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    width: 250px;
    max-width: 70%;
    color: #272932;
}

input:focus{
    outline: none;
}

.special-char-container{
    margin: auto;
    width: 250px;
    max-width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.special-char-btn{
    box-sizing: border-box;
    display: block;
    width: 35px;
    height: 35px;
    margin: 5px;
    color:  #eef0f2;
    border: 2px solid  #eef0f2;
    text-align: center;
    padding-bottom: 10px;
    font-size: 22px;
}



