section {
    height: fit-content;
    padding-bottom: 2em;
    display: flex;
    flex-direction: column;
    /*    justify-content: center;*/
    align-items: center;
    background-color: #37B6F6;
}

.emptyInput{
    width: 80%;
    height: 80%;
    margin-top: 1px;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    color:white;
    background-color: #07999233;
}

section h1 {
    /* text-transform: capitalize; */
    font-size: 1.5em;
    margin: 0.6em;

    color: white;
}

#progressBar {
    margin-top: 2em;
    display: grid;
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
}

.emptyProgress {
    height: 1.5em;
    width: 1.5em;
    background: white;
    border: 1px solid lightgreen;
    color: white;
    border-radius: 3px;
    text-align: center;
    padding-top: 7px;
}

.correctProgress {
    height: 1.5em;
    width: 1.5em;
    background: green;
    border: 1px solid lightgreen;
    color: white;
    border-radius: 3px;
    text-align: center;
    padding-top: 7px;
}

.wrongProgress {
    height: 1.5em;
    width: 1.5em;
    background: lightcoral;
    border: 1px solid lightgreen;
    color: white;
    border-radius: 3px;
    text-align: center;
    padding-top: 7px;
}

@keyframes zooms {
    from {
        transform: translateX(-1em)
    }

    to {
        transform: translateX(1em)
    }
}


#resultBox {
    color: white;
    font-size: 1.5em;
    margin: 0;
}

.centerDiv {
    width: 90%;
    background-color: #F9E104;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.instractionsParagraph {
    color: white;
    font-size: 1.2em;
    margin-top: 0px;
    font-weight: bold;
    text-align: center;
    padding: 0px 1em;
}

@media only screen and (max-width: 800px) {
    .centerDiv {
        width: 80%;
    }
    #answerBox{
        width:5em;
    }

}

@media only screen and (max-width: 600px) {
    .centerDiv {
        width: 90%;
    }

    #answerBox{
        width:4em;
    }
    .insertBox{
        display: grid;
        grid-template-columns: 100% !important;
        
    }    
}

.insertBox {
    display: grid;

    justify-content: center;
    align-items: center;
}

#questionParagraph {
    text-align: center;
    /* height: 100px; */
    font-size: x-large;
    font-weight: bold;
    margin: 0px 0px 1em 0px !important;
}

.numberBox {
    font-size: 3em;
}

.numberBox p {
    /* font-size: 3em; */
    margin: 0px 0.5em 0px 0.6em;
}

#answerBox {
    text-align: center;
    font-size: 2em;
    margin: 0em 1em;
    border-radius: 5px;
    background-color: white;
    width:5em;
    height:1.4em
}

.btn {
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #079992;
    border-radius: 15px;
    width: 150px;
    font-size: 1.3em;
}

#checkZone{
    display: grid;
    grid-template-columns: 50% 50%;
    margin-top:1em;
    width:fit-content;
    margin:1em auto 0em auto;
}

.grid10{
    display: grid;
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
}

.grid9{
    display: grid;
    grid-template-columns: 11% 11% 11% 11% 11% 11% 11% 11% 11%;
}

.grid8{
    display: grid;
    grid-template-columns: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
}

.grid7{
    display: grid;
    grid-template-columns: 14.2% 14.2% 14.2% 14.2% 14.2% 14.2% 14.2%;
}

.grid6{
    display: grid;
    grid-template-columns: 16.5% 16.5% 16.5% 16.5% 16.5% 16.5%;
}

.grid5{
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
}

.grid4{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.clear{
    border:1px solid black;
    text-align: center;

    background-color: white;
    border-radius: 5px;
    margin: 0px 3px 3px 0px;
}

.col4{
    width:95%;
    height: 1.5em;
    font-size:x-large;
}
.col5{
    width:95%;
    height: 1.5em;
    font-size:x-large;
}
.col6{
    width:95%;
    height: 40px;
    font-size:x-large;
}
.col7{
    width:95%;
    height: 40px;
    font-size:x-large;
}
.col8{
    width:95%;
    height: 40px;
    font-size:x-large;
}
.col9{
    width:95%;
    height: 40px;
    font-size:x-large;
}
.col10{
    width:95%;
    height: 1.5em;
    font-size:x-large;
}
@media only screen and (max-width: 700px) {
    #checkZone{
        grid-template-columns: 100%;
    }
    .btn{
        margin-top:1em;
    }
    .col4{
        width:90px;
    }
    .col5{
        width:50px;
    }
    .col6{
        width:40px;
    }
    .col7{
        width:36px;
        font-size: larger;
    }
    .col8{
        width:32px;
        font-size: larger;
    }
    .col9{
        width:27px;
        font-size: large;
    }
    .col10{
        width:24px;
        font-size: large;
    }

}

.pickedCell{
    background-color: cadetblue;
}