/* Cornell Red Theme */
body {
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #111;
  }
  
  .site-header {
    background-color: #B31B1B;
    padding: 1rem;
    color: white;
    text-align: center;
  }
  
  .site-title {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .site-content {
    padding: 2rem;
  }
  
  a {
    color: #B31B1B;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
    color: #800000;
  }
  
  .site-footer {
    border-top: 1px solid #ccc;
    margin-top: 3rem;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
  }
  