body {
    background-color: azure;
}
h1 { 
    color: #990A00;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 50px;
    font-size: 100px;
    font-weight: bold;
}

img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 450px;
}
.progress-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
        width: 100%;

}   
.progress-outer{
    background: #fff;
    border-radius: 50px;
    padding: 25px;
    margin: 10px 0;
    box-shadow: 0 0  10px rgba(209, 219, 231,0.7);
        max-width: 500px;
    width: 100%;
}
.progress{
    height: 27px;
    margin: 0;
    overflow: visible;
    border-radius: 50px;
    background: #eaedf3;
    box-shadow: inset 0 10px  10px rgba(244, 245, 250,0.9);
}
.progress .progress-bar{
    border-radius: 50px;
}
.progress .progress-value{
    position: relative;
    left: -45px;
    top: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.progress-bar.active{
    animation: reverse progress-bar-stripes 0.40s linear infinite, animate-positive 2s;
}
@-webkit-keyframes animate-positive{
    0% { width: 0%; }
}
@keyframes animate-positive {
    0% { width: 0%; }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 50px;
    }
    img {
        width: 300px;
    }
    .progress-outer {
        padding: 15px;
    }
    .progress-value {
        left: -30px;
        font-size: 12px;
    }
    
}