body {
  margin: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  background-color: black;
  color: white;
  font-family: cursive;
}

.container {
  text-align: center;
  width: 500px;
  position: relative;
}

.counter {
  font-size: 40px;
  margin-bottom: 1rem;
}

.loading-bar-back {
  position: absolute;
  height: 8px;
  background-color: lightgray;
  width: 100%;
  border-radius: 5px;
  border: none;
}

.loading-bar-front {
  position: absolute;
  height: 8px;
  background-color: orangered;
  width: 10%;
  border-radius: 5px;
  border: none;
}
