.header {
    font-size: 32px;
    color: white;
    text-align: center;
}

.headerDiv {
    margin: auto;
    width: 50%;
    padding: 10px;
    }

.cycleText:after {
    animation-name:cycle;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    content: "";
  }

.cycleHeader {
  white-space: pre;
}

@keyframes cycle {
  0% {
    content: "Where Did I Leave";
  }
  25% {
    content: "  Where Did I Buy";
  }
  50% {
    content: "   How Do I Make";
  }
  75% {
    content: "    How Do I Use";
  }
  100% {
    content: "Where Did I Leave";
  }
}