.navbar{
    background-color: #53ACFF;
    height: 8vh;
}

.login-button{
    background-color: aliceblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#input-container{
    margin-top: 50px;
}

#input-box{
    width: 60%;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    margin: 50px 10%;
    font-size: 40px;
    font-weight: 500;
    color: rgb(93, 93, 93);
}

#row1{
    /* align-self: center; */
    font-size: 40px;
    height: 120px;
    overflow-y: hidden;
    margin-left: 10%;
}

#row1 span{
    margin: 0 2px;
    border-radius: 6px;
    padding: 0 2px;
}

.problem-words{
    justify-content: center;
    display: flex;
    font-size: 40px;
    font-weight: 500;
    color: rgb(30, 30, 30);
    font-family: 'Poppins', sans-serif;
}

.highlight{
    background-color: #D9D9D9;
}

.correct{
    color: rgb(7, 177, 1);
}

.wrong{
    background-color: rgb(240, 90, 90);
}

#mycounter{
    
    font-size: 50px;
}

.sidebar{
    background-color: #D9D9D9;
    padding: 20px 0 0 0;
}

.result-card{
    margin-left: 10%;
    
    margin-top: 30px;
}

.counterDiv{
    position: absolute;
    height: 100px;
    width: 100px;
    padding-top: 8px;
    border: 2px solid black;
    border-radius: 100%;
    right: 10%;
    top: 120px;
    text-align: center;
}

.card-head{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    text-align: center;
    color: #146d54;
}

.list-group-item{
    padding: 15px 15px 12px;
}

.sidebar button{
    width: 100%;
    border: 0;
    padding: 15px 10px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.active-button{
    background-color: white;
}

.default-button{
    background-color: #D9D9D9;
}

.retake-button{
    position: absolute;
    right: 8%;
    top: 285px;
    background-color: #53ACFF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

@media screen and (max-width: 1430px) {
    #mycounter{
    
        font-size: 40px;
    }
    .counterDiv{
        height: 90px;
        width: 90px;
    }
}

@media screen and (max-width: 1350px) {
    .container{
        display: none;
    }
}


