* {
  box-sizing: border-box;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

table.content {
  border-collapse: collapse;
  margin: 32px 0;
  min-width: 400px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  color: white;
}

table.content thead tr {
  background-color: #00bbff;
  color: white;
  font-weight: bold;
  text-align: left;
}

table.content th,
table.content td {
  padding: 12px 100px;
}

table.content tbody tr {
  border-bottom: 1px solid #ccc;
}

table.content tbody tr:last-of-type {
  border-bottom: 2px solid #00bbff;
}

body {
    background-color: #2e3141;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("assets/reallife.png");
    background-size: auto,
    cover;
    background-attachment: fixed,
    fixed;
    background-position: center,
    center;
}

table.content {
  margin-left: auto;
  margin-right: auto;
}

a.credits {
   display: block;
   text-align: center;
   font-weight: bold;
}