
body {
    margin: 0;
    font-family: Arial, sans-serif;
    zoom:100%;
    user-zoom:fixed;
    background-color: #1b1a1ad9;
 }
 
 header {
    background-color: #333;
    padding: 10px;
 }
 
 nav {
    display: flex;
    justify-content: center;
 }
 
 ul {
    list-style: none;
    margin: 0;
    padding: 0;
 }
 
 li {
    margin: 0 10px;
 }
 
 a {
    text-decoration: none;
    color: #fff;
    padding: 8px 16px;
    display: inline-block;
 }
 
 a:hover {
    background-color: #555;
 }
 
 /* Style for the main navigation */
 .main-nav {
    background-color: #333;
    user-zoom: fixed;
 }
 
 .main-nav ul {
    display: flex;
    justify-content: center;
 }
 
 .main-nav li {
    margin: 0 20px;
 }
 
 /* Optional: Change color on hover */
 .main-nav a:hover {
    background-color: #555;
    border-radius: 5px;
 }
 /* Style for the active link */
 .main-nav a.active {
    background-color: #555;
    border-radius: 5px;
 }
 
 header {
    background-color: #333;
    padding: 10px;
 }
 
 .aboutSection {
    background-color: #474e5d;
    padding: 20px;
    color: black;
    max-width: 50%;
    border-radius: 10px;
    margin: 1%;
 }
 h2 {
    margin-bottom: 0.1%;
 }

 .projects {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontally center the entries */
    width: 75%;
    margin-left: 12.5%;
  }
  
  .project-entry {
    position: relative; /* Set the work entry as a positioning context */
    width: 80%; /* Adjust the width as needed */
    margin-bottom: 0px;
    margin-top: 30px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #696d74;
  }
  
  .project-entry h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .project-entry .date {
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .project-entry .description {
    font-size: 16px;
    line-height: 1.6;
  }
  
/* Styles for the GitHub button */
.github-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #fff;
    color: #000;
    padding: 5px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .github-logo {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

/* Keep existing styles */

/* Add responsive styles */
@media screen and (max-width: 768px) {
   .work-experience {
       width: 95%;
       margin-left: 2.5%;
   }

   .work-entry {
       width: 100%;
       margin-bottom: 20px;
   }

   .btn {
       position: relative;
       margin-top: 15px;
       display: block;
       text-align: center;
   }

   .main-nav ul {
       display: none;
       flex-direction: column;
   }

   .main-nav ul.show {
       display: flex;
   }

   .nav-toggle {
       display: block;
       padding: 10px;
       color: white;
       cursor: pointer;
   }

   .description {
       font-size: 0.9rem;
   }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
   .work-experience {
       width: 85%;
       margin-left: 7.5%;
   }

   .work-entry {
       width: 90%;
   }
}
