html,
body {
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.gif-container {
  animation: bounce 2s infinite;
}

.quote {
  animation: fade-in 1s ease-in-out;
  text-align: center;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gif-container {
    animation: none;
  }

  .quote {
    animation: none;
    opacity: 1;
  }
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
