body {
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
}

.quote-container {
  text-align: center;
}

.quote {
  font-size: 24px;
  line-height: 1.5;
  margin: -20% auto 0;
  max-width: 80%;
  color: white;
  opacity: 0;
}

.fadeIn {
  animation: fadeInAnimation 1s ease, fadeOutAnimation 2s 7s ease forwards;
  opacity: 1;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
