:root {
    --font: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  }
  
  body {
    font-family: var(--font);
    color: #111;
    background-color: #fff;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    line-height: 1.5;
  }
  
  header, footer {
    text-align: center;
    margin-bottom: 2rem;
  }

  footer {
    text-align: left;
  }
  
  h1 {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  h2 {
    font-weight: 300;
    font-size: 1.25rem;
    color: #555;
  }
  
  section.projects {
    /* margin-bottom: 1rem; */
  }
  
  .project {
    transition: background-color 0.2s ease;
    /* border-radius: 2px; */
    padding: 0.5rem;
    
  }
  
  .project:hover {
    background-color: #f5f5f5;
  }
  
details {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

details[open] {
    border-bottom: 1px solid #ddd;
}
  
  summary {
    font-size: 1.2rem;
    cursor: pointer;
    outline: none;
    list-style: none;
  }
  
  summary::-webkit-details-marker,
  summary::marker {
    display: none;
  }
  
  summary:hover {
    color: #000;
  }
  
  .contract-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 0;
    list-style: none;
  }
  
  .contract-list li {
    flex: 1 1 300px;
    padding: 0.75rem;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  
  .contracts strong {
    font-weight: 600;
  }
  
  a {
    color: #0066cc;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  footer h3 {
    font-weight: 400;
    margin-bottom: 1rem;
  }
  
  .resources {
    list-style: none;
    padding-left: 0;
  }
  
  .resources li {
    padding: 0.25rem 0;
  }
