progress {
    border-radius: 7px; 
    width: 100%;
    height: 30px;
    box-shadow: 1px 1px 4px rgba( 0, 0, 0, 0.2 );
    margin: 10px 0px;
  }
progress::-webkit-progress-bar {
    background-color: rgb(177, 177, 177);
    border-radius: 7px;
}
progress::-webkit-progress-value {
    background-color: rgb(112, 255, 77);
    border-radius: 7px;
    box-shadow: 1px 1px 5px 3px yellow;
}

progress::-moz-progress-bar {
    background-color: yellow;
    border-radius: 7px;
}
progress::-webkit-progress-value {
    background-color: rgb(86, 255, 67);
    border-radius: 7px;
    box-shadow: 1px 1px 5px 3px yellow;
}

.highlight {
    color: yellow;
}

.progress {
    padding: 20px;
}