body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
    background-size: 200% 200%;
    animation: bgAnimation 6s infinite alternate, fadeIn 2s ease-in;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
  }
  
  @keyframes bgAnimation {
    0% {
      background-position: left top;
    }
    100% {
      background-position: right bottom;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  h1 {
    font-size: 3rem;
    color: blue;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    animation: bounce 1.5s infinite alternate;
    margin-bottom: 20px;
  }
  
  @keyframes bounce {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-10px);
    }
  }
  
  p {
    font-size: 1.5rem;
    color: blueviolet;
    margin: 5px 0;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    width: 60%;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .column {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  h3 {
    margin-top: 20px;
    color: gray;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin: 10px 0;
  }
  
  a {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    padding: 12px 25px;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
  }
  
  a:hover {
    background: white;
    color: #2193b0;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
  }
  

  