#progressbarcontainer {
    position: relative;
    margin: 2% 15%;
    width: 70%;
    height: 10px;
    border: 1px solid black;
    border-radius: 15px;
    background-color: #ffffff;
    padding: 1px;
    box-shadow: 0 0 0px #ffffff;
    cursor: pointer;
}

#divtext {
    position: relative;
    margin: 5% 15% 0% 15%;
    width: 70%;
    color: #ffffff;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
}

#progressbar {
    position: relative;
    z-index: 1;
    width: 0%;
    left: 0;
    height: 100%;
    background-color: #ff0000;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    box-shadow: 0 0 0px #ffffff;
}
