body {
    background-color: #202936;
    font-family: sans-serif;
    text-align: center;
    color: #a09d9d;
  }

  h1 {
    font-size: 4rem;
    color: #a09d9d;
    margin-top: 3rem;
  }

  p {
    font-size: 1.5rem;
    color: #999;
    margin-top: 1rem;
  }

  button {
    padding: 1rem 2rem;
    background-color: #0099ff;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
  }

  button:hover {
    background-color: #0077cc;
  }

  .animated {
    animation: fadeIn 2s ease-in-out;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }