body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: lightgray;
    color: #333;
  }
  
  header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    height: 5vh;
  }
  
  main {
    padding: 2rem;
    text-align: center;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  nav{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
  }
  
  nav li {
    display: inline;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  nav a:hover {
    text-decoration: underline;
  }
  @media (max-width: 600px) {
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }
  #projects {
    text-align: center;
  }
  
  .projects-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    gap: 20px; /* Space between boxes */
    margin-top: 20px; /* Adds space between the title and boxes */
  }
  
  .project-box {
    width: 200px;
    height: 200px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
  }
  