@import url("https://fonts.googleapis.com/css2?family=STIX+Two+Math&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  width: 90vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "STIX Two Math", serif;
}

h1 {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

#counter__container {
  background-color: rgba(0, 128, 0, 0.541);
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  border-radius: 10px;
}

@media only screen and (max-width: 550px) {
  body {
    width: 95vw;
  }
}

@media only screen and (max-width: 487px) {
  h1 {
    font-size: 30px;
  }

  #counter__container {
    font-size: 20px;
    padding: 20px 10px;
  }
}

@media only screen and (max-width: 312px) {
  h1 {
    font-size: 20px;
  }

  #counter__container {
    font-size: 15px;
    padding: 20px 10px;
  }
}

@media only screen and (max-width: 240px) {
  h1 {
    font-size: 15px;
  }

  #counter__container {
    font-size: 12px;
    padding: 20px 10px;
  }
}
