
:root {
    --white: #fff;
    --darkblue: #1b4965;
  }
  
  * {
    padding: 0;
    margin: 0;
  }
  
  a {
    color: currentColor;
  }
  
  body {
    margin: 50px 0 150px;
  }
  
  .container {
    max-width: 1000px;
    padding: 0 15px;
    margin: 0 auto;
    text-align: center;
  }
  
  h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
  }
  
  /* TABLE STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .table {
    text-align: left;
    border-collapse: collapse;
    border-left: 1px solid var(--darkblue);
    border-right: 1px solid var(--darkblue);
    margin: 20px auto;
  }
  
  .table th,
  .table td {
    padding: 20px 10px;
  }
  
  .table th {
    color: var(--white);
    background: var(--darkblue);
  }
  
  .table tbody tr:not(:first-child) {
    border-top: 1px solid var(--darkblue);
  }
  
  .table tbody tr:last-child {
    border-bottom: 1px solid var(--darkblue);
  }
  
  /* FOOTER STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .page-footer {
    position: fixed;
    right: 0;
    bottom: 50px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 1;
    background: var(--white);
  }
  
  .page-footer a {
    display: flex;
    margin-left: 4px;
  }
  
  