@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto Mono", sans-serif;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8e44ad;
  color: #fff;
  cursor: default;
}
body main {
  width: 480px;
  display: flex;
  justify-content: space-around;
}
body main .counterGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main .counterGroup i {
  font-size: 5rem;
  padding: 0.75rem;
}
body main .counterGroup h3 {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  transition: all 2s ease-in-out;
}
body main .counterGroup span {
  font-size: 1rem;
}

@media (max-width: 480px) {
  main {
    flex-direction: column;
  }
}/*# sourceMappingURL=counter.css.map */