/*body {
    margin: 6px
}*/
p {
    color: white; 
    text-shadow: 2px 2px 4px black;
    font-size: 28px;
    padding-top: 35px;
}

hr.styled_hr{
	border: 8px dashed #ffffff
}

#progressbase{
    width: 100%;
    background-color: rgb(241, 241, 241);
    margin-top: auto;
}
#progressbar {
    width: 0%;
    height: 30px;
    background-color: rgb(64, 131, 255);
    transition-property: width;
    transition-duration: 1.5s;

    /*-webkit-animation: Move_progress_bar 3.5s ease;
    -moz-animation: Move_progress_bar 3.5s ease;
    animation: Move_progress_bar 3.5s ease;*/
}


#percentage {
    text-shadow: 2px 2px 4px black;
    color: white; 
    font-size: 30px
}

/* @keyframes Move_progress_bar {
    from {
        width: 0%;
    }
    to {
        width: {{ prog.0.progress }}%
    }
}*/