@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");

* {
   box-sizing: border-box;
  }

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
}

.counter {
  font-size: 80px;
  margin-top: 10px;
}

@media (max-width: 580px) {
  body {
  flex-direction: column;
  }
}
