@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Mono', 'sans-serif';
  background-color: #8e44ad;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  color: #fff;
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 2rem 3.4rem;
}

.counter {
  margin-top: 0.2rem;
  font-size: 4.5rem;
}

@media only screen and (max-width: 580px) {
  body {
    flex-direction: column;
  }
}
