body {
  font-family: "Arial", sans-serif;
  background-color: #F8F8F8;
  color: Black;
  
  margin: 16px auto;
  
  width:     90%;
  max-width: 80em;
}

a {
  color: hsl(220, 75%, 50%);
  &:hover {
    color: hsl(220, 55%, 30%);
  }
  
  transition: color 0.25s ease;
  
  text-decoration: none;
}

a[title], span[title], span[title] a {
  text-decoration: underline dotted;
}

p {
  text-align:      justify;
  text-align-last: left;
}

header {
  background-color: White;
  
  padding: 8px 10px;
  
  border:        solid darkgray 1.4px;
  border-radius: 10px 10px 0 0;
  
  border-bottom: dashed darkgray 1.0px;
  
  h1 {
    font-weight: normal;
    font-size:   1.7em;
    
    b {
      color:     hsl(215, 80%, 40%);
      font-size: 1.4em;
    }
    span {
      color: hsl(218, 75%, 32%);
    }
    
    margin-top:    8px;
    margin-bottom: 2px;
  }
  
  div {
    font-size:  1.4em;
    text-align: right;
    
    a {
      padding: 4px;
      
      border-radius: 4px;
      
      background-color: none;
      &:hover {
        background-color: hsl(220, 45%, 95%);
      }
      
      transition: background-color 0.25s ease;
    }
  }
}

div:not(header *, div *) {
  background-color: White;
  
  padding: 4px 10px;
  
  border: solid darkgray 1.4px;
  
  border-top:    none;
  border-bottom: none;
}

footer {
  background-color: #F0F0F0;
  color:            #2E2E2E;
  
  padding: 1px 10px;
  
  border:        solid darkgray 1.4px;
  border-radius: 0 0 10px 10px;
  
  border-top: none;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  
  margin-bottom: 8px;
  
  th, td {
    padding: 3px;
  }
  
  text-align: center;
}

div.widget {
  display: flex;
  justify-content: center;
  align-items:     center;
}