body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Fredoka One", cursive;
}

.logo-container {
  position: absolute;
  top: 25px; /* adjust for spacing */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  min-height: 100px;
  width: auto;
}

.logo{
  height: auto;
  display: block;
  min-height: 125px;
  max-height: 125px;
}

#textContainer {
  width: 960px;
  font-size: 64px;
  padding: 0 20px;
  box-sizing: border-box;
}

.word {
  display: inline-block;
  white-space: nowrap;
}

.letter {
  display: inline-block;
  opacity: 1;
  color: rgba(0, 0, 0, 0.1);
}

@keyframes letterAnimation {
  0% {
    color: rgba(0, 0, 0, 0.1);
  }
  30% {
    color: var(--randomColor);
  }
  100% {
    color: black;
  }
}

.author {
    margin-top: 10px;
    font-style: italic;
    color: gray;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
