@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  --halfHeight: 0.72em;
  --borderRadius: 8px;
  height: 100vh;
  background: hsl(235, 16%, 14%);
  background-position: center bottom, center bottom;
  background-repeat: repeat, no-repeat;
  padding: 15px;
  color: white;
  background-size: contain;
  font-family: "Red Hat Text", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
}

h3 {
  display: grid;
  place-items: center;
  width: 100%;
  font-size: 20px;
  letter-spacing: 8px;
  text-align: center;
}

.clock {
  width: 100%;
  display: grid;
  place-items: center;
}

@media screen and (max-width: 526px) {
  body {
    background-size: auto;
    background-position: center bottom, -850px bottom;
  }
  .clock {
    margin-top: 20px;
  }
  .flip-clock__slot {
    font-size: 12px;
  }
}
