@import "./styles/base.css";

#app {
  width: 100dvw;
  height: 100dvh;

  display: grid;

  & > * {
    grid-area: 1 / 1;
  }
}

#hero {
  place-self: center;
  font-size: clamp(12px, 5vw, 96px);
  font-weight: bolder;
  text-box: trim-both cap alphabetic;
  overflow-wrap: break-word;
}
