ul{
    color: rgb(34, 254, 0);
    margin: auto;
    align-items: center;
    text-align: center;
    font-size: 2em;
}

    body {
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: white;
      text-align: center;

      /* Gradient setup */
      background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fad390, #fbc2eb);
      background-size: 400% 400%;

      /* Animation */
      animation: gradientBG 15s ease infinite;
    }

    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
