/* Sub-heading and skills container */
.sub-heading-and-skills {
    display: flex;            /* Make the heading and skills align horizontally */
    align-items: center;      /* Align the text vertically in the center */
    gap: 10px;                /* Add space between the heading and the skills */
    flex-wrap: wrap;          /* Allow wrapping if content exceeds container width */
  }
  
  /* Inline heading */
  .inline-heading {
    margin: 0;                /* Remove default margins to avoid extra spacing */
    display: inline;          /* Ensure the heading is inline with the skills */
  }
  
  /* Skills list */
  .skills-list {
    display: inline;          /* Ensure the skills are inline with the heading */
  }
  
  /* Individual skills */
  .inline-skill {
    margin-right: 5px;        /* Add spacing between individual skills */
    white-space: nowrap;      /* Prevent line breaks within each skill */
    font-family: roboto,sans-serif;
    font-size: 16px;
    font-weight: 300;
  }