pre {
  background-color: #313030;
  margin: 0.1%;
}

footer {
  margin-top: 50%;
  padding: 0px;
  text-align: center;

  color: white;
  background-color: #1e1e1e;

  border-width: 0px;
  border-top-width: 2px;
  border-color: gray;
  border-style:outset;

  height: 1.5rem;
  position: fixed;
  bottom:0%;
  width:100%;
  left: 0%;

  box-shadow: 0 0 1rem gray;
}

ul {
  margin: 0%;

  padding-inline-start: 5;
}

li::marker {
  color: aqua;
}

h1 {
  color: white;
  text-shadow: 0 0 0.4rem cyan;
}

h2 {
  color: white;
  margin-bottom: 0%;
  text-shadow: 0 0 0.2rem cyan;
}

h3 {
  color: white;
  margin: 0%;
  text-shadow: 0 0 0.05rem cyan;
}

a {
  text-decoration: none;
  color: cyan;
  text-shadow: 0 0 0.1rem cyan;
  text-decoration: underline;
}

/* unvisited link */
a:link {
  text-decoration: none;
  color: lightblue;
  text-shadow: 0 0 0.1rem lightblue;
}

/* visited link */
a:visited {
  color: lightskyblue;
  text-shadow: 0 0 0.1rem lightskyblue;
}

/* mouse over link */
a:hover {
  color: cyan;
  filter: drop-shadow(0 0 0.3rem cyan);
}

/* selected link */
a:active {
  color: cornflowerblue;
  filter: drop-shadow(0 0 0.3rem cornflowerblue);
}

.big {
  font-size: 2em;
  font-weight: bold;
}

.glow {
  filter: drop-shadow(0 0 0.3rem #ffffff5b);
}

@keyframes rainbow-animation {
  to {
      background-position: 200% center;
  }
}

body {
  background-color: #1e1e1e;
  
  color: white;
  text-decoration-color: azure;

  margin: 0.2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/*
IL Hook Viewer
*/
.addedIL {
  color: greenyellow
}

.removedIL {
  color: red
}

.additionalInfo {
  color: gray;
  font-style: italic;
}

.highlighted {
  color: cornflowerblue;
  filter: drop-shadow(0 0 0.3rem cornflowerblue);
}

.sourceMod {
  color:violet
}