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

body {
  background: #232323;
  color: #ffffff;
}

a,
button {
  cursor: pointer;
}

#header {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#battery {
  width: 60%;
  height: 250px;
  border: 6px #ffffff solid;
  border-radius: 40px;
  position: relative;
}

.real {
  position: absolute;
  border-radius: 33px;
  height: 100%;
}

#battery article {
  display: flex;
  flex-direction: row;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.first {
  width: 30px;
  height: 100px;
  border-radius: 50px;
  background-color: #ffffff;
  transform: translate(-19px, 70px);
}

.last {
  width: 30px;
  height: 100px;
  border-radius: 50px;
  background-color: #ffffff;
  transform: translate(19px, 70px);
}

.middle {
  transform: translate(0, 95px);
  font-size: 50px;
}

#text1 {
  margin: 20px;
  font-size: 20px;
  position: relative;
  text-align: center;
}

#text2 {
  margin: 20px;
  font-size: 20px;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 795px) {
  #battery {
    width: 85%;
    height: 150px;
    border: 6px #ffffff solid;
    border-radius: 40px;
    position: relative;
  }
  .first {
    width: 20px;
    height: 90px;
    border-radius: 50px;
    background-color: #ffffff;
    transform: translate(-15px, 20px);
  }
  .last {
    width: 20px;
    height: 90px;
    border-radius: 50px;
    background-color: #ffffff;
    transform: translate(15px, 20px);
  }
  .middle {
    transform: translate(0, 50px);
    font-size: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
