html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background-color: #153B50;
  color: #ECEBE4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Holtwood One SC", Georgia, serif;
  line-height: 1;
  text-align: center;
  padding: 1rem;
}

h1 {
  font-size: clamp(2rem, 8vw, 5rem);
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  cursor: default;
  user-select: none;
}

.font-loaded h1 {
  opacity: 1;
}
