
    body {
      margin: 0;
      padding: 0;
      background: linear-gradient(45deg, #49a09d, #5f2c82);
      background-size: 400% 400%;
      animation: gradient 15s ease infinite;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: 'Arial', sans-serif;
      color: white;
    }

    @keyframes gradient {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    h1 {
      font-size: 2rem;
      text-align: right;
      padding: 1rem;
      border-radius: 10px;
    }

    a {
      color: white;
      text-decoration: none;
    }

