/* Breakpoints
   Mobile:  default (< 768px)
   Tablet:  768px – 1023px
   Desktop: 1024px and up
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: "Special Elite", "Courier New", Courier, monospace;
  -webkit-font-smoothing: antialiased;
}

.holding {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  min-height: 100dvh;
  padding: 1.5rem;
  text-align: center;
}

.name {
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Mobile (default) */
.name {
  font-size: 1.5rem;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .holding {
    padding: 2rem;
  }

  .name {
    font-size: 2.25rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .holding {
    padding: 3rem;
  }

  .name {
    font-size: 3rem;
  }
}
