@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;700&display=swap");
.date {
  display: none;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 5%;
}

.main__title {
  width: 450px;
  word-wrap: break-word;
  text-align: center;
  margin: 0 0 0 20px;
  font-size: 50px;
  font-family: "Yanone Kaffeesatz", sans-serif;
  letter-spacing: 13px;
}

.main__container {
  max-width: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.block {
  position: relative;
}
.block__content {
  top: 5%;
  left: 95%;
}
.block__indications {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  border-radius: 10px;
}

.indications-row {
  height: 100%;
  width: 100%;
}

.indications__left, .indications__right {
  width: 50%;
  height: 100%;
}

.indication {
  font-family: "Yanone Kaffeesatz", sans-serif;
  letter-spacing: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.voltage {
  background: rgba(0, 100, 0, 0.8);
}

.current {
  background: rgba(100, 0, 0, 0.8);
}

.circle {
  margin: 0 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 5px;
}

@media (max-width: 2500px) {
  .indication {
    font-size: 35px;
  }
  .main__container {
    width: 1700px;
  }
}
@media (max-width: 2000px) {
  .indication {
    font-size: 28px;
    letter-spacing: 8px;
  }
  .main__container {
    width: 100%;
  }
}
@media (max-width: 1300px) {
  .indication {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .main {
    margin: 0 5%;
  }
}
@media (max-width: 650px) {
  .main__title {
    width: 350px;
    font-size: 32px;
    text-align: center;
  }
  .indication {
    margin: 25px 0 0 0;
    height: 50px;
    font-size: 25px;
    letter-spacing: 5px;
  }
}
@media (max-width: 450px) {
  .indication {
    font-size: 20px;
    margin: 20px 0 0 0;
  }
  .block__content {
    top: 5%;
  }
}