.home {
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-name: fadeIn;
  animation-delay: 0.3s;
  max-width: 600px;
  opacity: 0;

  h1 {
    font-size: 4rem;
    text-align: center;
    margin-top: 20dvh;
    margin-bottom: 4rem;
  }

  .llc {
    font-size: 2rem;
  }

  a {
    background-color: var(--slate-300);
    padding: 0.5rem 1.0rem;
    border-radius: 0.2rem;
  }

  p {
    font-size: 1.1rem;
    text-align: center;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .inquire-link {
    font-size: 1.1rem;
    margin-top: 6rem;
    text-align: center;
  }


  .inquire-link {

    a {
      background-color: var(--slate-300);
      padding: 0.5rem 1.0rem;
      border-radius: 0.2rem;
    }
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
