body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
  }
  
  .site-header {
    color: #fff;
    padding: 1rem;
    border-bottom: 2px dotted black;
  }
  
  .site-header .logo {
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
  }
  
  .site-header .site-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    margin: 0;
  }
  
  .site-header .site-nav a {
    color: black;
    text-decoration: none;
  }
  .header-col-1, .header-col-2 {
    display: inline-block;
    vertical-align: top;
    width: 49%;
}

  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
  }
  
  .project {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
  }
  
  .project img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .project h2 {
    margin: 1rem 0 0.5rem;
  }
  
  .project p {
    margin: 0.5rem 0;
  }
  
  footer.site-footer {
    position: absolute;
    bottom: 0;
    padding: 1rem;
}