html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, sans-serif;
}

.container {
  width: 100%;
  max-width: 90%;
  text-align: center;
}

.bar {
  position: relative;
  width: 100%;
  height: 20px;
  background-color: #e0e0e0;
}

#progress {
  height: 100%;
  width: 0%;
}

#percent {
  position: absolute;
  top: -24px;
  transform: translateX(-50%);
  font-size: 16px;
  white-space: nowrap;
}

#remaining {
  margin-top: 16px;
  font-size: 16px;
}