.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif; /* Set the desired sans-serif font */
  font-style: italic;
  /*font-feature-settings: "smcp", "zero";
  font-variant: small-caps slashed-zero;*/
}

h1 {
  font-size: 40px;
  color: #00699d;
  animation: slideIn 1s ease-in-out;
}

p {
  font-size: 24px;
  color: #555;
  animation: fadeIn 4.5s ease-in-out;
  font-family: Arial, sans-serif; /* Set the desired sans-serif font */
}

a {
  text-decoration: none; /* Remove the underline from all links */
  color: inherit; /* Inherit the color from the parent element */
}

@keyframes slideIn {  
  0% {
    opacity: 0;
    transform: translateY(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
