:root {
  --timing: ease;
}

.scrollBar1 {
  position: fixed;
  top: 95vh;
  height: 2px;
  width: 0%;
  background: goldenrod;
  -webkit-transition: width 200ms var(--timing);
  transition: width 200ms var(--timing);
  text-align: right;
  color: #fff;
}
.scrollBar1 span {
  position: absolute;
  top: -23px;
  right: 15px;
  font-size: 0.7em;
  font-weight: 500;
  display: block;
  text-align: center;
}
.scrollBar1 span::after {
  content: "%";
  font-size: 0.8em;
  position: absolute;
  right: -15px;
  bottom: 4px;
  font-weight: 700;
  opacity: 0.4;
}

.scrollBar2 {
  position: fixed;
  top: 0;
  right: 2vw;
  height: 0%;
  width: 10px;
  background: #49e;
  -webkit-transition: height 200ms var(--timing);
  transition: height 200ms var(--timing);
  text-align: right;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 1em;
}
.scrollBar2 span {
  position: absolute;
  bottom: 3px;
  left: 2px;
  font-size: 0.7em;
  font-weight: 500;
  display: inline-block;
  text-align: left;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom left;
}
.scrollBar2 span::after {
  content: "%";
  font-size: 0.8em;
  position: absolute;
  right: -15px;
  bottom: 4px;
  font-weight: 700;
  opacity: 0.4;
}

body {
  position: relative;
  overflow-x: hidden;
  height: 200vh;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, #111), color-stop(33%, #151515), color-stop(66%, #151515), color-stop(66%, #111));
  background: linear-gradient(0deg, #111 33%, #151515 33%, #151515 66%, #111 66%);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  color: #ccc;
}
body > div {
  position: absolute;
  top: 35vh;
  font-size: 2em;
  display: block;
  text-align: center;
  width: 100vw;
}

.st0 {
  fill: #ffffff;
}

h1,
h2,
h3 {
  margin: 0 0 1em;
}

h1 {
  font-size: 1.2em;
}

h2 {
  color: #666;
  font-size: 0.8em;
}

h3 {
  color: #777;
  font-size: 0.6em;
}