* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: linear-gradient(rgb(80, 80, 80),
      rgb(22, 22, 22));
}

.container {
  height: 300px;
  width: 600px;
}

.title {
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.scope {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0;
  background-image: linear-gradient(rgb(80, 80, 80),
      rgb(22, 22, 22));
  padding: 12px 5%;
  text-align: center;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.85);

}

.scope label,
.scope span {
  color: white;
  width: 15%;
  font-size: 18px;
  text-align: right;
}

progress {
  border-radius: 15px;
  width: 60%;
  height: 16px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.89);
  transform: scaleX(0);
  transform-origin: left;
  animation: grow 1s ease-out forwards;
}

progress::-webkit-progress-bar {
  background-image: linear-gradient(rgb(114, 114, 114),
      rgb(29, 29, 29));
  border-radius: 15px;
}

progress::-webkit-progress-value {
  background-image: linear-gradient(to right, rgb(33, 114, 26),
      rgb(0, 255, 0));
  border-radius: 7px;
  box-shadow: 2px 0px 2px 1px rgb(55, 245, 7);
}
.scope:hover{
transition: linear 0.1s;
cursor: pointer;
background-image: linear-gradient(rgb(172, 172, 172));
transform: scale(1.02);
}

@keyframes grow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
