/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1, h2, h3 {
    color: #333;
  }
  
  /* Header */
  .header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  .header .nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .header .nav a:hover {
    text-decoration: underline;
  }
  
  /* About Section */
  .about {
    background-color: #f9f9f9;
    text-align: center;
    padding: 40px 20px;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .about p {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
  }
  
  /* Projects Section */
  .projects {
    padding: 40px 20px;
    text-align: center;
  }
  
  .project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .project {
    background-color: #007bff;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    flex: 1;
    text-align: left;
  }
  
  .project h3 {
    margin-top: 0;
  }
  
  /* Contact Section */
  .contact {
    background-color: #f9f9f9;
    text-align: center;
    padding: 40px 20px;
  }
  
  .contact a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  .footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .project-list {
      flex-direction: column;
    }
  
    .project {
      max-width: 100%;
    }
  }
  