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

* {
  box-sizing: border-box;
}

body {
  background-color: #8e44ad;
  color: #ffffff;
  font-family: 'Roboto Mono', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 100vh;
  margin: 0;
}

.counter-container {
  background-color: #621483;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-width: 280px;
  border-radius: 5px;
  margin: 30px 50px;
  padding: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

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

.counter-container span {
  display: none;
}

@media (min-width: 501px) {
  body {
    flex-direction: row;
  }

  .counter-container span {
    display: block;
  }
}
