* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #dbe3e2;
  }
  
  header {
    height: 175px; /* Set the height of the header */
    background-color: #15191c; /* Example background color */
    color: #fff; /* Example text color */
    position: fixed; /* Fix the header at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure the header stays above other content */
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 5px 70px;
    text-align: center;
    color: #dbe3e2;
    z-index: 500;
  }

  .socials {
    display: flex;
    justify-content: center;
    gap: 15px; /* Adjust spacing between icons */
    list-style: none;
    max-width: 750px;
    padding: 0;
    margin: 0 auto;
}

  .socials a {
      text-decoration: none; /* Remove underline */
      display: inline-flex;
      width: 1000px;
      height: 0px;
      align-items: center;
      justify-content: center;
      border-radius: 50%; /* Optional: Circular icons */
      transition: transform 0.2s ease-in-out;
  }

  .socials a:hover {
      transform: scale(1.1); /* Slight zoom effect on hover */
  }

  .socials img {
      width: 100%;
      height: auto;
}
  
  .profile {
    margin-bottom: 20px;
  }
  
  .profile h1 {
    font-size: 1.8em;
    margin-bottom: 5px;
  }
  
  .profile p {
    font-size: 1.1em;
    margin-bottom: 3px;
  }
  
  .profile-picture {
    position: absolute;
    bottom: -75px; /* Half of the picture's height */
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #dbe3e2; /* Adding a border to make it stand out */
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    height: 100%; /* Adjust the height of the grid container */
    overflow-y: auto; /* Allow vertical scrolling for the grid */
  }
  
  .tile {
    background-color: #15191c;
    box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.5);
    border-radius: 5px; /* Adjust the border radius as needed */
  }
  
  
  main {
    margin-top: 200px; /* Adjusted to accommodate the fixed header */
    padding: 20px;
    overflow-y: auto; /* Enable vertical scrolling for main section */
    background-color: #dbe3e2;
  }
  
  section {
    margin-top: 25px; /* Ensure sections start below the header */
  }
  
  
  /* Other styles for resume sections... */
  
  a {
    color: #000000;
    text-decoration: underline;
  }
  
  a:hover {
    color: #780000;
    text-decoration: none;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  
  ul {
    list-style-type: disc;
    margin-left: 25px
  }
  
  li {
    margin-bottom: 0px;
  }
  
  .segment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .segment-group {
    flex: 1 0 calc(50% - 30px); /* Three columns for wider screens */
    margin-bottom: 20px;
    margin-right: 30px;
  }
  
  .segment-group ul {
    list-style-type: disc;
    padding: 0px 0px 0px 25px;
    margin: 0;
  }
  
  @media only screen and (max-width: 600px) {
    .segment-group {
        flex: 1 0 100%; /* Single column for smaller screens */
    }
  }
  
  @media only screen and (max-width: 600px) {
    .project-group {
        flex: 1 0 100%; /* Single column for smaller screens */
    }
  }
  
  footer {
    background: #dbe3e2ff;
    text-align: center;
    padding: 20px;
  }