* {
    margin: 0;
    padding: 0;
  }
  #desktop-nav {
    position: fixed; /* Make the header fixed */
    top: 0; /* Align the header at the top */
    left: 0; /* Align the header to the left */
    width: 100%; /* Span the full width of the viewport */
    background: white; /* Set a background color to make text visible */
    z-index: 1000; /* Ensure the header is above other content */
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1); /* Optional: Adds shadow for better visibility */
}
  body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    min-width: 100%;
  }
  html {
    scroll-behavior: smooth;
  }
 
  p,
  li {
    color: rgb(85, 85, 85);
  }
  .circle{
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background-color: green;
    translate: -50%;
}
.timeline-list{
    list-style: none;
    border-left: 1px dashed red;
    padding: 1rem 2rem;

}
  nav,
  .nav-links {
    display: flex;
  }

  nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
  }
 
  .nav-links {
    gap: 1.5rem;
    list-style: none;
    font-size: 1.5rem;
  }
 
  a {
    color: black;
    text-decoration: none;
    text-decoration-color: white;
  }

  a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
  }
 
  .logo {
    font-size: 2rem;
  }
 
  .logo-img {
    width: 8rem;
  }
 
  .logo:hover {
    cursor: default;
  }

  #nav {
    display: none;
  }
 
  .menu {
    position: relative;
    display: inline-block;
  }
 
  .icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22px;
    width: 28px;
    cursor: pointer;
  }
 
  .icon span {
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
  }

  .menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
  }
 
  .menu-links a {
    display: block;
    padding: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
  }
 
  .menu-links li {
    list-style: none;
  }
 
  .menu-links.open {
    max-height: 350px;
  }

  .icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
  }
 
  .icon.open span:nth-child(2) {
    opacity: 0;
  }
 
  .icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
  }
 
  .icon span:first-child {
    transform: none;
  }
 
  .icon span:nth-child(2) {
    opacity: 1;
  }
 
  .icon span:last-child {
    transform: none;
  }

  section {
    padding: 4vh;
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
  }
 
  .section-container {
    display: flex;
  }
 
  .divide {
    display: none;
    width: 100%;
    opacity: 0.5;
    background-color: rgb(181, 181, 181);
  }
  .myname{
    font-size: 2rem;
    font-weight: 600;
    margin: auto;
    text-align: center ;
  }
  #about {
    position: fix;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: fixed;
  }
 
  #profile {
    display: flex;
    justify-content: center;
    gap: 5rem;
    height: 80vh;
  }

  .section__pic-container {
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
 
  }
 
  .section__text {
    align-self: center;
    text-align: center;
  }
 
  .section__text p {
    font-weight: 600;
  }
 
  .section__text__p1 {
    text-align: center;
  }
 
  .section__text__p2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .tag {
    font-size: 2rem;
    font-weight: 600;
    color: rgb(85, 85, 85);
    margin-bottom: 1rem;
  }
 
  .tag span {
    color: black;
    font-weight: 600;
  }
 
  .title {
    font-size: 3rem;
    text-align: center;
  }

  #socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
  }

  .icon {
    cursor: pointer;
    height: 2rem;
  }

  .btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
 
  .btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
  }
 
  .btn-color-1,
  .btn-color-2 {
    border: rgb(53, 53, 53) 0.1rem solid;
  }
 
  .btn-color-1:hover,
  .btn-color-2:hover {
    cursor: pointer;
  }
 
  .btn-color-1,
  .btn-color-2:hover {
    background: rgb(63, 63, 63);
    color: white;
  }
 
  .btn-color-1:hover {
    background: rgb(0, 0, 0);
  }
 
  .btn-color-2 {
    background: none;
    margin-right: 0.7rem;
  }
 
  .button-projects-load {
   margin-right: 0;
  }
 
  .btn-color-2:hover {
    border: rgb(255, 255, 255) 0.1rem solid;
  }

  .mail-me{
    padding: 10px 20px;
    border-radius: 20px;
    margin: 20px 0px;
    font-size: 25px;
    font-weight: 600;
  }

  @media  screen and (max-width: 768px) {
    .section-container {
      flex-direction: column;
    }
 
    .divide {
      display: block;
    }
 
    .section__pic-container {
      display: none;
    }
 
    .section__text {
      margin-top: 2rem;
    }
 
    .section__text__p2 {
      font-size: 1.2rem;
    }
 
    .tag {
      font-size: 1.5rem;
    }
 
    .title {
      font-size: 2rem;
    }
 
    .btn-container {
      flex-direction: column;
    }
 
    .btn {
      width: 100%;
    }
 
    .btn-color-2 {
      margin-right: 0;
    }
    
  }
  
  