body {
  background-image: url('blackhole.gif');
  background-color: rgb(0, 0, 0);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
  padding: 0;
  overflow: hidden;
}


#logo {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

#audio-controls {
  position: fixed;
  bottom: 80px;
  right: 80px;
}

#audio-controls button {
  background-color: green;
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
}

#audio-controls button[hidden] {
  display: none;
}

#connect-button {
  position: fixed;
  top: 80px;
  right: 80px;
  background-color: green;
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
}

#scrolling-text-container {
  position: fixed;
  padding-bottom: 200px;
  top: 0;
  left: -150px;
  width: 150px;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#scrolling-text {
  position: absolute;
  top: 50%;
  left: 0;
  color: green;
  font-size: 250px;
  font-family: 'Press Start 2P';
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #0f0, 0 0 30px #0f0, 0 0 40px #0f0, 0 0 50px #0f0;
  white-space: nowrap;
  transform: translate(0, -50%);
  animation: scrolling-text 10s linear infinite;
}

@keyframes scrolling-text {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

#input-prompt {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 10px;
}

#input-prompt label {
  color: white;
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

#input-prompt input[type="text"] {
  padding: 10px;
  font-size: 18px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

#input-prompt input[type="submit"] {
  background-color: white;
  color: green;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 999;
}

#overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

#overlay-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

#overlay-text p {
  font-size: 32px;
}

#matrix-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: lime;
  font-family: 'Courier New', monospace;
  font-size: 20px; /* Adjust font size for density */
}

#shard-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure canvas is behind other content */
  pointer-events: none; /* Allow clicks to go through the canvas */
}

#error-404 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(186, 173, 197); 
  font-family: 'Press Start 2P', monospace;
  font-size: 25px;
  text-align: center;
}

/* Water ripple effect */
.ripple {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5); /* Adjust color and opacity as needed */
  border-radius: 50%;
  width: 100px; /* Adjust size of the ripple */
  height: 100px; /* Adjust size of the ripple */
  animation: rippleEffect 0.6s linear;
}

@keyframes rippleEffect {
  to {
    transform: scale(2); /* Adjust scale to make the ripple expand */
    opacity: 0; /* Adjust opacity to make the ripple fade out */
  }
}

