body {
  margin: 0;
  color: white;
  background-color: black;
}

.title {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  font-family: "Courier New", Courier, monospace;
  text-shadow: 0px 0px 5px black;
  transform-origin: top left;
}

.title .author a {
  color: white;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.title .dash a {
  color: #00d000;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.title .dash {
  padding-top: 20px;
  color: white;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.tweakpane {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1000; 
}

:root {
  --tp-base-background-color: hsla(225, 100%, 50%, 0.40);
  --tp-base-shadow-color: hsla(0, 0%, 0%, 0.2);
  --tp-button-background-color: hsla(0, 0%, 80%, 0.8);
  --tp-button-background-color-active: hsla(0, 0%, 100%, 0.8);
  --tp-button-background-color-focus: hsla(0, 0%, 95%, 0.8);
  --tp-button-background-color-hover: hsla(0, 0%, 85%, 0.8);
  --tp-button-foreground-color: hsla(0, 0%, 0%, 0.8);
  --tp-container-background-color: hsla(0, 0%, 0%, 0.3);
  --tp-container-background-color-active: hsla(0, 0%, 0%, 0.6);
  --tp-container-background-color-focus: hsla(0, 0%, 0%, 0.5);
  --tp-container-background-color-hover: hsla(0, 0%, 0%, 0.4);
  --tp-container-foreground-color: hsla(0, 0%, 100%, 0.5);
  --tp-groove-foreground-color: hsla(0, 0%, 0%, 0.2);
  --tp-input-background-color: hsla(0, 0%, 0%, 0.3);
  --tp-input-background-color-active: hsla(0, 0%, 0%, 0.6);
  --tp-input-background-color-focus: hsla(0, 0%, 0%, 0.5);
  --tp-input-background-color-hover: hsla(0, 0%, 0%, 0.4);
  --tp-input-foreground-color: hsla(0, 0%, 100%, 0.8);
  --tp-label-foreground-color: hsla(0, 0%, 100%, 0.5);
  --tp-monitor-background-color: hsla(0, 0%, 0%, 0.3);
  --tp-monitor-foreground-color: hsla(0, 0%, 100%, 0.8);
}

.console {
  position: absolute;
  bottom: 15px;
  left: 10px;
  z-index: 1000;
  padding: 5px;
  min-height: 10px;
  color: #00a000;
  width: 600px;
  overflow: hidden;  
  font-size: 12px;
  border: 1px solid #00ff0080;
  border-radius: 6px;
  background-color: #00100080;
  font-family: "Courier New", Courier, monospace;
}

.console .info {
  color: #00d000;
}

.console .debug {
  color: #808080;
}

.console .warn {
  color: #d0d000;
}

.console .notice {
  color: #d000d0;
  font-weight: 800;
}
.console .error {
  color: #d00000;
  font-weight: 800;
}

#butt-panel {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.butt {
  color: #00a000;
  font-size: 16px;
  border: 1px solid #00ff0080;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  background-color: #00100080;
  font-family: "Courier New", Courier, monospace;
  padding: 0px;
  cursor: pointer;
  z-index: 1000;
  margin: 1px;
}

.butt:hover {
  background-color: #1a1a1a;
}



