body {
  font-family: "Termina Bold", "Poppins", "Montserrat", "Gotham", "Articulat", sans-serif;
  font-weight: bold;
  margin: unset;
}

.battery-log {
  position: relative;
  overflow: hidden;
  background-color: #0093E9;
  color: white;
  z-index: 1;
}
.battery-log:after {
  width: 100%;
  height: var(--fill);
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0093E9), to(#80D0C7));
  background-image: linear-gradient(-180deg, #0093E9 0%, #80D0C7 100%);
  position: absolute;
  z-index: -1;
}
.battery-log__wrapper {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.battery-log__percentage {
  font-size: calc(var(--font) * 4rem);
}
.battery-log__cycles {
  font-size: 2.5rem;
}