nav ul {
  display: flex;
  justify-content: center;
}

button {
  background: black;
  color: white;
  padding: 4px;
  text-transform: uppercase;
}

button.words {
  background: white;
  color: black;
}

#words {
  margin: 10px;
  display: flex;
  justify-content: center;
}

.has-dropcap:first-letter {
  float: left;
  font-size: 2rem;
  line-height: 0.5;
  margin: 0.1em 0.1em 0.2em;
}

.dropcap {
  background: black;
  color: white;
  float: left;
  font-size: 3rem;
  line-height: 1;
  padding: 0.1em;
}
.dropcap:before,
.dropcap:after {
  content: "";
  display: block;
}
.dropcap:before {
  margin-top: -0.2em;
}
.dropcap:after {
  margin-bottom: -0.1em;
}

[role="tooltip"] {
  display: block;
  border: 10px dashed black;
  background-color: var(--palatinate-blue);
  color: white;
  position: fixed;
  width: 500px;
  height: 300px;
  overflow-y: scroll;
  top: calc(50% - 150px);
  left: calc(50% - 250px);
  z-index: 9999;
  padding: 20px;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

[role="tooltip"] .tooltip__body {
  padding: 10px;
}

.hidden {
  visibility: hidden;
}

@media only screen and (max-width: 900px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px;
  }
}

#scrawl-wrapper {
  position: absolute;
  bottom: 5px;
  z-index: 99;
  overflow-x: hidden;
}

#scrawl {
  height: 30px;
  padding: 5px;
  position: relative;
  box-sizing: border-box;
  top: 0;
  left: 0;
  /* background-color: rgba(250, 245, 245, 0.842); */
  width: 100vw;
  color: rgba(37, 8, 10, 0.877);
  font-weight: bold;
}

#scrawl:hover {
  font-family: Rubik Spray Paint;
  word-spacing: 10px;
}

.text-glow {
  animation: ease-in infinite glow 60s;
}

#scrawl p {
  position: absolute;
  width: max-content;
  margin: 0;
  margin-left: 100vw;
}

@keyframes glow {
  0% {
    text-shadow: 0.5px 0 1px #da900663, -0.5px 0 1px #d82e0370, 0 0 3px,
      2.7px 0 1px #a1f80080, -2.7px 0 2px #f804555e, 0 0 3px;
    color: #553904bd;
  }

  25% {
    text-shadow: 0.5px 0 1px #bada0679, -0.5px 0 1px #03d84371, 0 0 4px,
      2.7px 0 4px #88ff0081, -2.7px 0 2px #f8040459, 0 0 4px;
    color: #c0070794;
  }

  50% {
    text-shadow: 0.5px 0 1px #00b7ff71, -0.5px 0 1px #ff00ea75, 0 0 4px,
      2.7px 0 4px #6200ff86, -2.7px 0 2px #002fff71, 0 0 4px;
    color: #023f578a;
  }

  75% {
    text-shadow: 0.5px 0 1px #7700ff75, -0.5px 0 1px #4b48ff88, 0 0 3px,
      2.7px 0 1px #ff42a188, -2.7px 0 2px #e404f86e, 0 0 3px;
    color: #3f0c4eb6;
  }

  100% {
    text-shadow: 0.5px 0 1px #da900663, -0.5px 0 1px #d82e0370, 0 0 3px,
      2.7px 0 1px #a1f80080, -2.7px 0 2px #f804555e, 0 0 3px;
    color: #553904bd;
  }
}
