

#next-button{
    display: none;
}

#loader{
    display: none;
}




.wrapper-app{
    background-color: transparent;
    color: #fff;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.app{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: #387975;
    padding: 3rem 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 1000px;
}

#answer-buttons{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
#question{
    font-size: 2rem;
}
.btn{
    padding: 13px 2rem;
    background-color: #fff;
    color: #387975;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1.25rem;
    text-align: left;
    max-width: 100%;
    width: 600px;
}



#next-btn{
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    padding: 13px 20px;
    text-align: center;
    background-color: #387975;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.25rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}
.wrapper-tugma{
    display: flex;
    align-items: center;
    justify-content: center;
}
.correct{
    background-color: #148ac1;
    color: #fff;
}
.incorrect{
    background-color: red;
    color: #fff;
}

.btn:hover:not([disabled]){
    cursor: pointer;
}
.btn:disabled{
    cursor: no-drop;
}
.btn:hover{
    background-color: #387975;
    color: #fff;
    border-color: #fff;
}


#question{
    text-align: center;
    margin-bottom: 2rem;
}

#next-btn:hover{
    background-color: #fff;
    border-color: #387975;
    color: #387975;
}




@media (max-width: 768px){
    .app{
        width: 100%;
        margin: 0.5rem 1.5rem;
    }
    .btn{
        width: 100%;
    }
}



@media (max-width: 500px){
    .quiz-sarlavha{
        font-size: 1.75rem;
    }
    #question{
        font-size: 1.5rem;
    }
    .btn{
        font-size: 1rem;
    }
    
}


@media (max-width: 400px){
    .quiz-sarlavha{
        font-size: 1.25rem;
    }
    #question{
        font-size: 	1.125rem;
    }
    .btn{
        font-size: 	0.875rem;
        width: 100%;
    }
}