:root {
  --color-background1: rgb(0, 0, 0);
  --color-text1: rgb(0, 255, 0);
  --color-text2: rgb(0, 200, 0);
  --color-text3: rgb(0, 225, 0);
  --green: #66ff66;

}

body {
  background-color: #000;
  background: radial-gradient(#177317, #000);
  box-shadow: inset 0 0 30rem #000000;
  color: #66ff66;
  padding: 1rem;
  margin: 0;
  font-size: 1.5rem;
  text-shadow: 0 0 5px rgb(from #66ff66 calc(r + 40) calc(g + 40) b);
  font-family: "VT323", monospace;
  font-weight: 300;
  font-style: normal;
  height: 100vh;
  overflow: hidden;
}

.main {
  margin-left: 10%; /* Same as the width of the sidenav */
  font-size: 16px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

a:link {
  color: var(--color-text2);
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: var(--color-text2);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: var(--color-text3);
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: var(--color-text1);
  background-color: transparent;
  text-decoration: underline;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 10%;
  position: fixed;
  height: 100%;
  overflow: auto;
}

.nav {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
}
