body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  overflow: hidden;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  color: white; /* Ensure all content text is white */
}

.content p, .content h1, .content h2, .content h3, .content li {
  color: white;
}

.content a {
  color: white;
  text-decoration: underline;
}

nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

nav a {
  color: #00ff99;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ffaa;
}

textarea {
  width: 60%;
  height: 200px;
  background: rgba(0,0,0,0.7);
  border: 1px solid #00ff99;
  color: white;
  padding: 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  border-radius: 8px;
  outline: none;
  resize: none;
  box-shadow: 0 0 15px #00ff99;
  margin-bottom: 1rem;
}

button, a.home {
  background: transparent;
  color: #00ff99;
  border: 1px solid #00ff99;
  padding: 0.7rem 2rem;
  font-size: 1.2rem;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px #00ff99;
  transition: all 0.3s ease;
  text-decoration: none;
}

button:hover, a.home:hover {
  background: #00ff99;
  color: black;
  box-shadow: 0 0 20px #00ffaa;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  max-width: 800px;
  line-height: 1.5;
}