* {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #151515;
}

section {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section p {
  width: 90%;
  max-width: 700px;
  color: lightgrey;
  text-align: left;
}

section p a {
  color: #7aeb7a;
  text-decoration: none;
  font-weight: 500;
}

section p a:hover {
  text-decoration: underline;
}

#nav {
  padding-top: 25px;
}

#nav a {
  font-size: 1.3em;
  color: #434343;
  background-color: #7aeb7a;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}

#nav a:hover {
  background-color: lightgreen;
}

#main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#main .table-divider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main table {
  width: 90%;
  max-width: 700px;
  color: #ececec;
  border-collapse: collapse;
}

#main table tr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
      grid-template-columns: 120px 1fr;
}

#main table tr a {
  color: #ececec;
  text-decoration: none;
}

#main table tr a:hover {
  font-weight: 500;
}

#main table tr a:visited {
  color: lightsalmon;
}

#main table tr th,
#main table tr td {
  text-align: left;
  padding: 6px 20px;
  border-bottom: #151515 solid 2px;
}

#main table tr th {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  margin-top: 1em;
  font-size: 1em;
  text-transform: uppercase;
  background-color: #195ca0;
}

#main table tr td {
  background-color: #434343;
}
/*# sourceMappingURL=style.css.map */