@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

html {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}

body {
  background-color: #111111;
  color: white;
  font-family: "Roboto Mono";
  font-size: 14px;
  text-align: center;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

p {
  line-height: 1.5em;
}

a {
  color: turquoise;
}

code {
  background-color: #236040; /* M23604 */
  padding: 0.2em;
  border-radius: 0.2em;
}

circled {
  display: inline-block;
  background: #336dff;
  color: #eeeeee;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  font-size: 1em;
}

hr {
  border-top: 2px solid #AAAAAA;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  margin: 2em 0;
}

kbd {
  background-color: #eee;
  border-radius: 3px;
  border: 1px solid #b4b4b4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
  color: #333;
  display: inline-block;
  font-family: "Roboto Mono";
  font-size: .85em;
  font-weight: 600;
  line-height: 1;
  padding: 2px 4px;
  white-space: nowrap;
}

br {
  display: block;
  content: " ";
  margin: 0.2em 0;
}

table {
  table-layout: fixed;
  margin: 25px auto;
  border-collapse: collapse;
  font-size: 1em;
  min-width: 400px;
  box-shadow: 0 0 20px "#eeeeee";
}

table thead tr {
  background-color: #009879;
  color: #eeeeee;
  text-align: left;
}

th, td {
  padding: 12px 15px;
  text-align: center;
}

table tbody tr {
  border-bottom: 1px solid #eeeeee;
}

table tbody tr:nth-of-type(even) {
  background-color: #222222;
}

table tbody tr:last-of-type {
  border-bottom: 5px solid #eeeeee;
}

table tbody tr.active-row {
  font-weight: bold;
  color: #009879;
}