/* General Styles */

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width:  1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  
  nav li {
    display: inline-block;
    margin: 0 10px;
  }
  
  nav a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
  }
  
  nav a:hover {
    color: #e74c3c;
  }
  
  .profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  section {
    padding: 50px 0;
    text-align: center;
  }
  
  section h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  section p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  section .project {
    margin-bottom: 40px;
  }
  
  section .project h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  section .project p {
    font-size: 16px;
  }
  
  section .project a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
  }
  
  section .project a:hover {
    background-color: #c0392b;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Styles */
  
  @media screen and (max-width: 768px) {
    nav ul {
      flex-direction: column;
    }
  
    nav li {
      display: block;
      margin: 10px 0;
    }
  
    section p {
      margin-bottom: 20px;
    }
  
    section .project p {
      margin-bottom: 20px;
    }
  }
  