html {
  scrollbar-color: #09c3bd black;
}

body {
  font-family: monospace, "Courier New", Courier, "Arial Bold", sans-serif;
  background-color: black;
  color: #09c3bd;
  overflow-y: scroll;
}

main {
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
}

header {
  width: 90%;
  margin: auto;
}

nav {
  background-color: #ea00d3;
  font-size: 22px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
  color: #09c3bd;
  border-radius: 1px;

}

nav:hover {
  color: #ea00d3;
  background-color: #e67742;
}

nav ul {
  padding: 0%;
}

nav a {
  color: black;
  text-decoration: none;
}

nav ul a:hover {
  color: #09c3bd;
}

#aSelected {
  font-weight: bold;
  text-decoration: dotted underline;
  text-decoration-thickness: 4px;
  text-decoration-inset: 2px;

}

h1 {
  color: #8cec2d;
  font-size: 31px;
  width: 97%;
  padding: 1% 3% 1%;
}

h1 ul {
  float: right;
  font-size: 23px;
  color: #09c3bd;
  list-style-type: none;
  width: 150px;
  margin: auto;
  text-align: center;
}

h1 ul a {
  color: #09c3bd;
  font-size: 19px;
  text-decoration: none;
}

h1:hover {
  color: #09c3bd;
}

h1 ul a:hover {
  color: #8cec2d;
}

h2 {
  color: #8cec2d;
}

h2:hover {
  color: #e67742;
}

h3 {
  color: #e67742;
}

h3:hover {
  color: #8cec2d;
}


p {
  text-indent: 3%;
}

section {
  padding-left: 3%;
  padding-right: 3%;
}

section p {
  text-indent: 0;
}

section img {
  width: 102px;
  height: 178px;
}

menu {
  padding-left: 3%;
}

a {
  color: #ea00d3;
}

hr {
  color: #ea00d3;
  border-style: dashed;
}

button {
  background-color: black;
  color: #09c3bd;
  border: 1px solid #ea00d3;
  border-radius: 2px;
}

button:hover {
  color: #8cec2d;
}

footer {
  background-color: #8cec2d;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #e67742;
  text-align: center;
  border-radius: 1px;
  height: fit-content;
  font-size: smaller;
  padding: 3px;
}

footer:hover {
  background-color: #ea00d3;
  color: #8cec2d;
}