canvas {
  background: #111;
  border: none;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
}

a {
  color: #F2C300;
}

ul li {
  list-style-type: none;
  padding-bottom: 1em;
}

h1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-style: italic;
}

nav {
  font-weight: bold;
  text-align: center;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.active,
.navlink:hover {
  background-color: #2f2f2f77;
  border: 1px;
  border-radius: 5px;
  box-shadow: 1px 1px 1px;
}

nav a {
  padding: 10px;
  text-decoration: none;
  color: #df0000;
}

body {
  background-color: #111;
  color: #F2C300;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

header {
  text-align: center;
  color: #F2C300;
  min-height: 80px;
}

footer {
  font-size: small;
  font-style: italic;
  text-align: center;
  padding-top: 1em;
  color: #F2C300;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  max-width: 1600px;
  width: 90%;
}

.text-center {
  text-align: center;
}

dt {
  font-weight: bold;
  font-size: larger;
  padding-top: 1em;
  padding-bottom: 2px;
}

main dl dd dl dt {
  padding-top: 0;
}

.clicktoshow {
  cursor: pointer;
  outline: none;
}

h2:focus+.hidden {
  display: block;
}

dt:focus+.hidden {
  display: block;
}

.hidden {
  display: none;
}

dd {
  padding-bottom: 1em;
}

.note {
  font-style: italic;
  font-size: small;
}

.contentTable {
  width: 100%;
}

textarea.requestForContent {
  width: 25%;
  height: 50px;
}

table {
  border-collapse: collapse;
  border: 1px solid;
  margin-bottom: 10px;
}

tr:nth-child(even) {
  background-color: #22222299;
}

th {
  padding-left: 10px;
  white-space: nowrap;

}

td {
  padding-left: 10px;
  white-space: nowrap;
}

#submitResult {
  overflow-x: auto;
}