body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #ffffff;
}
  
.progress-container {
  width: 120px;
  height: 8px;
  background-color: #F9F9F9;
  border-radius: 10px;
  overflow: hidden;
}
  
.progress-bar {
  height: 100%;
  width: 0;
  background-color: #A5C33F;
  transition: width 0.4s ease;
}