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

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto Mono", sans-serif;
  background-image: linear-gradient(45deg, #ff4331, #d31a50);
  color: #fff;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.counter {
  font-size: 70px;
  margin: 10px 0;
}

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