.body-cover {
    height: 100%;
    width: 100%;
    font-family: Dosis, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
}

.cover-title {
    font-size: 10rem;
    text-align: center;
    line-height: 160%;
    letter-spacing: 1.5rem;
    animation: pulsate 5s ease-in-out infinite alternate;
}

@keyframes pulsate {
  100% {
    /* Larger blur radius */
    text-shadow:
      0 0 4px #bbb,
      0 0 11px #ccc,
      0 0 19px #ddd,
      0 0 40px #fff,
      0 0 80px #fff,
      0 0 90px #fff,
      0 0 100px #fff;
  }
 0% {
    /* A slightly smaller blur radius */
    text-shadow:
      0 0 4px #bbb,
      0 0 10px #ccc,
      0 0 18px #ddd,
      100px 0 200px #fff,
      0px 0px 73px #fff,
      0 0 80px #fff,
      0 0 94px #fff;
  }
}
