body,
html {
  height: 100%;
  margin: 0;
  background-color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.splash-content i {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 1s infinite;
}
.splash-content h1 {
  font-weight: bold;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
