:root {
 --dark: hsl(128, 20%, 40%);
 --light: hsl(128, 20%, calc(40% + 45%));

}

body {
  background: var(--dark);
}


#title {
  font-family: 'system-ui';
  color: black;
  font-size: 1.5em;
}

#footer {
  position: fixed;
  bottom: 5px;
  left: 0px;
  right: 0px;
  width: 100%;
  text-align: center;
  font-family: 'system-ui';
  text-align: center;
  color: var(--light);
}
/*
input {
  background-color: #333;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Courier New', Courier, monospace;
  box-shadow: 5px 5px 5px #666;
  border-radius: 6px;
  position: relative;
  transition: all 0.1s ease;
}


button {
  background-color: #333;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Courier New', Courier, monospace;
  box-shadow: 5px 5px 5px #666;
  border-radius: 6px;
  position: relative;
  transition: all 0.1s ease;
}
*/

#banner {
  position: fixed;
  margin: 0 auto;
  width: 90%;
  min-height: 300px;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 40px;
  background: var(--light);
  text-align: center;
  color: var(--dark);
  z-index: 2;
  cursor: alias;
  border-radius: 6px;

}

.overlay_box {
  position: fixed;
  display: block;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 20px;
  margin: 8%;
  bottom: auto;
  background-color: rgba(32,32,32,0.95);
  z-index: 3;
  color: #ffffff;
  cursor: auto;
 
}

#output {
  font-family: monospace;
  max-width: 600px;
  max-height: 40vh;
  width: 80%;
  border: 1px solid #008f11;
  border-radius: 2px;
  padding: 20px 30px;
  margin: 0 auto;
  color: #008f11;
  word-wrap: break-word;
  word-break: break-all;
  background: #000000;
  text-indent: -1em;
  text-align: left;
  text-decoration: none;
  overflow: auto;
}

b {
  color: #00ff41;
}


.cursor {
  text-decoration: none;
  color: #008f11;
  animation: blink 0.8s linear infinite;
}

@keyframes blink {
  0% { opacity: 0.1; }
  50% { opacity: 1; }
  100% { opacity: 0.1; }

}

.arrow {
  text-decoration: none;
  color: #cc8833;
}
.link {
  text-decoration: none;
  color: #3388cc;
  cursor: pointer;
}

.topright {
  position: absolute;
  top: 8px;
  right: 16px;
}

.close_button {
  text-decoration: none;
  cursor: pointer;
}

ul.child_list {
  list-style: none;
}

ul.child_list li:before{
  vertical-align: text-center;
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: 2px 2px 8px #3388cc;
  content: '\2937'; /* code Hex notation */
  padding-right: 8px;
  color:#eee;
  text-decoration: none;
}

li.child_list {
  font-size: 1.2em;
}


