/* style.css */
html, body {
    margin: 0;
    padding: 0px;
    background-color: black;
	font-size:10px;
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
	    font-size:10px;
}

#content{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  z-index: 2;
  padding:20px;
  overflow: auto;
      font-size:10px;
}


.textbox {
    display: none; /* Das Element ist standardmäßig unsichtbar */
    width: 100%;
    height:auto;
    color: #00FF00; /* Grüner Text wie bei der Matrix */
    font-size: 18px;
    text-align: left;
    z-index: 2;
    margin: 20px auto;
}

.userInput {
    display: none;  /* Das Eingabefeld ist standardmäßig unsichtbar */
    width: 100%;
    box-sizing: border-box;
    margin: 20px auto;
    font-size: 16px;
    padding: 10px;
    border: 2px solid #00FF00;
    background-color: black;
    color: #00FF00;
    z-index: 3;
}

.mytext{
  font-style: italic;
  color:#e1ff00;
}
