* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(120deg, #f3f4f6, #dbe9f4);
    padding: 20px;
  }

  header {
    text-align: center;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
    color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideInFromTop 1.5s ease-out;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  header nav {
    margin-top: 10px;
  }
  
  .nav-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: #333;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1rem;
    transition: transform 0.3s, background 0.3s;
  }
  
  .nav-btn:hover {
    background: #4CAF50;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  main {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in;
  }
  
  .project {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(90deg, #e3f2fd, #f3e5f5);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .project:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .project h2 {
    color: #2196F3;
    animation: zoomIn 1s ease-out;
  }
  
  .project ul {
    list-style: none;
    padding: 0;
  }
  
  .project ul li {
    padding: 5px 10px;
    background: #f4f4f4;
    margin-bottom: 5px;
    border-left: 4px solid #2196F3;
    transition: transform 0.3s, background 0.3s;
  }
  
  .project ul li:hover {
    background: #e3f2fd;
    transform: translateX(10px);
  }
  
  .project p {
    margin-bottom: 10px;
    color: #555;
    
  }

  @keyframes slideInFromTop {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes zoomIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  