/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
  }
  
  header {
    text-align: center;
    padding: 40px 0;
    background-color: #222;
    color: #fff;
  }
  
  nav {
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px;
  }
  
  nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  section {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
  }
  
  .project {
    margin-bottom: 20px;
  }
  
  .project a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
  }
  
  .project a:hover {
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 30px;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 600px) {
    nav {
      flex-direction: column;
      align-items: center;
    }
  
    nav a {
      margin: 10px 0;
    }
  }
  