/* Reset default browser styles */
body, h1, p, nav, button, table, th, td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-size: 18px;
  }
  
  nav {
    background-color: #2c2c2c;
    padding: 10px;
  }
  
  nav a {
    color: #e0e0e0;
    text-decoration: none;
  }
  
  .project {
    text-align: center;
    padding: 20px;
  }
  
  .key {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .color {
    margin-top: 30px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 8px;
    border-bottom: 1px solid #555;
  }
  
  th {
    background-color: #333;
    color: #fff;
    text-align: left;
  }
  
  tr:nth-child(even) {
    background-color: #444;
  }
  
  tr:hover {
    background-color: #555;
  }
  
  tr:last-child {
    border-bottom: 2px solid #333;
  }
  