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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Mono', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  text-align: center;
  background-color: blueviolet;
  color: white;
}

.counter{
  font-size: 3rem;
}

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