*{
    box-sizing: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
}
body{
    background-color: black;
    padding: 0;
    border: 0;
}
.progress-bar-container{
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#progress-bar{
    width: 30%;
    margin-top: 0.5%;
    height: 2%;
  
}
label{
    color: white;
    font-size: 2rem;
}
h2{
    position: absolute;
    left: 80%;
    top: 20%;
    font-size: 16px;
    color: white;
}
@media only screen and (max-width: 600px) {
    h2 {
        left: 50%; /* Adjust the horizontal position */
        top: 90%; /* Adjust the vertical position */
        font-size: 12px; /* Adjust the font size */
        color: white; /* Keep the color the same */
    }
}