#quiz-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reloads {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#progress-bar-container {
    position: absolute;
    width: 50%;
    height: 20px;
    bottom: 30%; left: 0; right: 0;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #bbb;
}
#progress-bar {
    width: 0;
    height: 100%;
    background-image: url("progress_.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

#reload-text {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
}