html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: white;
  color: #050507;
  font-family: "Excon", sans-serif;
  display: grid;
  place-items: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.card {
  position: relative;
  text-align: center;
  display: grid;
  place-items: center;
  z-index: 10;
}
.card h1 {
  font-size: 3rem;
}
.card .version {
  color: rgba(5, 5, 7, 0.6666666667);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}
.card .time {
  font-size: 1.25rem;
}
.card .status .disabled {
  display: none;
}
.card .status svg {
  width: 150px;
  height: 150px;
}
.card .icon-tabler-heart {
  stroke: lime;
}
.card .icon-tabler-error-404 {
  stroke: red;
}
.card .icon-tabler-refresh {
  stroke: #ffbf00;
  animation: spin 4s linear infinite;
}
.card.updating .circle {
  background: rgba(255, 145, 0, 0.3254901961);
}
.card.updating .circle::before {
  background: rgba(255, 145, 0, 0.3254901961);
}
.card.stopped .circle {
  background: rgba(255, 0, 0, 0.3254901961);
}
.card.stopped .circle::before {
  background: rgba(255, 0, 0, 0.3254901961);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}/*# sourceMappingURL=style.css.map */