  body {
    background-color: #F1F7D0;
    font-family: 'Abhaya Libre', serif;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .content h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    font-size: 24px;
  }
  
  .sidebar {
    background-color: #F1F7D0;
    color: #000;
    padding: 20px;
    width: 200px;
    position: fixed;
    top: 0;
    right: -220px;
    height: 100%;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.show {
    right: 0;
  }
  
  .sidebar nav ul {
    list-style-type: none;
    padding: 0;
  }
  
  .sidebar nav a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
  }
  
  .sidebar nav ul li:first-child {
    margin-top: 40px;  
  }
  
  .content {
    flex-grow: 1;
    margin: 0 auto; 
    max-width: 800px;
    padding: 100px 80px 40px 80px;
  }
  
  .content p {
    line-height: 1.8; 
    margin-bottom: 1.5em; 
  }
  
  ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 1em; 
  }
  
  li {
    line-height: 1.8; 
    padding-bottom: 0.5em; 
  }
  
  h2, h3 {
    margin-top: 2em;
    margin-bottom: 1em;
  }
  
  .menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 16px;
    width: 20px;
  }
  
  .menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000;
  }  

  .social-icons {
    position: fixed;
    bottom: 20px;
    left: 40px;
    display: flex;
    gap: 30px; 
    z-index: 2;
  }

  .social-icons a {
    color: #000;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #666;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }

  .project-card {
    padding: 30px;
    border: 1px solid #000;
    transition: transform 0.2s ease;
  }

  .project-card:hover {
    transform: translateY(-5px);
  }

  .project-card h2 {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    margin: 0 0 15px 0;
  }

  .project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .tag {
    background: #000;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
  }

  .project-description {
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .project-links {
    display: flex;
    gap: 15px;
  }

  .project-links a {
    color: #000;
    text-decoration: underline;
    font-family: 'Abhaya Libre', serif;
    font-size: 16px;
  }

  .project-links a:hover {
    color: #666;
  }

  @media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
  }

  .landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
  }

  .landing-page img {
    max-width: 800px;
    width: 100%;
    height: auto;
  }

  .landing-page p.centered-caption {
    max-width: 800px;
    width: 100%;
    text-align: center !important;
    margin: 0 auto;
    padding: 0 20px;
  }

  .name-button {
    position: fixed;
    top: 20px;
    left: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.5px;
    font-size: 16px;
    z-index: 1001; 
  }

  .name-button:hover {
    color: #666; 
  }

  .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #000;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
  }

  .back-link:hover {
    text-decoration: underline;
  }

  .project-image {
    max-width: 100%;
    margin: 20px 0;
  }

  .project-image img {
    width: 100%;
    height: auto;
  }