/* Global styles */
body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Header styles */
  header {
    background-color: #222831;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
  }
  
  header h1 {
    margin: 0;
  }
  
  /* Navigation styles */
  nav {
    background-color: #222831;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin: 0 20px;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
  }
  
  nav a:hover {
    color: #00adb5;
  }
  
  /* Main content styles */
  main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px;
  }
  
  section {
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
    background-color: lightgray;
    padding: 3%;
  }

section#projects ul {
  display: flex;
  flex-wrap: nowrap; /* This will prevent the items from wrapping onto a new line */
}

section#projects li {
  width: 30%; /* adjust the width to your liking */
  margin-right: 20px;
  position: relative;
  padding-bottom: 3%;
}
  
  section h2 {
    margin-bottom: 25px;
    text-align: center;
  }
  
  section a {
    color: #00adb5;
    text-decoration: none;
  }

  .gh {
    position: absolute;
    bottom: 0;
  }

  section#about-me p {
    line-height: 130%;
  }

  section#np li {
    list-style-type: none;
    padding-bottom: 8%;
  }

  section#np ul {
    float: left;
  }

  #img {
    float: right;
    width: 25%;
    padding-right: 5%;
  }
  

  /* Footer styles */
  footer {
    background-color: #222831;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    text-align: center;
  }
  