@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");
html {
  font-size: 3vw;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgb(0, 64, 225);
}
@media (max-width: 769px) {
  html {
    font-size: 5vw;
  }
}
@media (max-width: 769px) {
  html {
    font-size: 4vw;
  }
}
html body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 100vh;
}
html body h1 {
  font-size: 2rem;
  line-height: 1em;
  margin: 0;
}
html body #counter {
  display: flex;
  flex-direction: row;
  background-color: rgb(0, 64, 225);
  border-radius: 0.5rem;
  align-items: flex-end;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
html body #counter span {
  display: flex;
  height: 3rem;
  width: 1.6rem;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
html body #counter span.dot {
  width: 0.3rem;
  height: 0.3rem;
  background-color: rgba(255, 255, 255, 0.5);
}
html body #unit-selector {
  color: rgb(0, 64, 225);
  font-size: 0.3rem;
  line-height: 1em;
  font-family: "Plus Jakarta Sans", sans-serif;
  border: 0.1em solid rgb(0, 64, 225);
  border-radius: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  width: auto;
  padding: 0.2em 1em 0.2em 1em;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M5 6L0 1 1.41.59 5 4.17 8.59.59 10 1 5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 0.2rem 0.1rem;
  padding-right: 1.5em;
  transform: scale(2); /* Adjust the scale value as needed */
}