main{
    border-radius:0 ;
    padding: 100px 0;
    height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    text-align: center;
    flex-direction: column;
    overflow: auto;
    background: rgba(57, 65, 131, 0.509);
}
#id_question{
    max-width: 75%;
}

#progressBar{
    padding: 0;
    width: 100%;
    height: 3rem;
    border: 4px solid rgba(0, 212, 255, 1);
    border-radius: 24px;
    /* margin-top: 2rem; */
    overflow: hidden;
}
#progressBarFull{
    border-radius: 24px;
    height: 100%;
    background: linear-gradient(155deg, rgba(2, 0, 36, 1) 0%, rgba(95, 95, 179, 1) 16%, rgba(0, 212, 255, 1) 96%);
    width: 0;
}
@media( max-height: 450px ){
    main{
        padding: 10px 0;
    }
}