html {
  scrollbar-color: #02cc3b black;
}

body {
  font-family: monospace, "Courier New", Courier, "Arial Bold", sans-serif;
  background-color: black;
  color: #00f947;
  overflow-y: scroll;
  letter-spacing: 2px;
  text-shadow: 1px 1px #c901b8;
}

main {
  width: 90%;
  font-size: 14px;
  margin: 0 auto;
}

header {
  width: 90%;
  margin: auto;
}

h1 {
  font-size: 29px;
  width: 93%;
  padding: 1% 3% 1%;
  letter-spacing: 5px;
}

h1 a {
  text-decoration: none;
}

nav {
  background-color: black;
  font-size: 22px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
  border: 1px dashed #02cc3b;
}

nav ul {
  padding: 0%;
}

h2 {
  font-size: 21px;
  letter-spacing: 5px;

}

h3 {
  font-size: 19px;
  text-align: center;
}

hr {
  color: #02cc3b;
  border-style: dashed;
}

nav a {
  color: #00f947;
  text-decoration: none;
}

nav a:hover {
  font-weight: bold;
}

a {
  color: #02cc3b;
}

p {
  text-indent: 2%;
  line-height: 200%;
}

table {
  border: 1px dashed #02cc3b;
  overflow: auto;
  table-layout: fixed;
  width: 100%;
  height: 240px;
  display: block;
  left: 0 auto;
  scrollbar-color: #02cc3b black;
  margin: 1% 0% 3%;
}

table caption {
  caption-side: bottom;
  padding: 5px;
}

thead {
  position: sticky;
  top: 0;
  background-color: black;
  font-size: 17px;
}

th {
  border-right: 1px dashed #02cc3b;
  border-bottom: 1px dashed #02cc3b;
  padding: 8px 10px;
}

th:last-child {
  border-right: 1px dashed black;
}

td {
  border-right: 1px dashed #02cc3b;
  border-bottom: 1px dashed #02cc3b;
  padding: 8px 10px;
  width: 25%;
}

td:last-child {
  border-right: 1px dashed black;
}

footer {
  background-color: black;
  border: 1px dashed #02cc3b;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  border-radius: 1px;
  font-size: smaller;
  padding: 1px 0 1px;
}