html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: black;
  touch-action: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

canvas {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}



#hydraCodeBox {
  position: fixed;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.375); /* Change as needed */
  color: white; /* Change as needed */
  padding: 20px;
  overflow: auto;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 9999; /* This ensures the text box is on top of other elements */
  
  font-size: 1.5vw; /* adjust as necessary */
  
  
  overflow: hidden; /* Add this line */

  @keyframes scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

#scrollingText {
  animation: scroll 10s linear infinite;
}
}