body {
  background-image: url("neo 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white; 
}

h1 {
  font-family: 'Pacifico', cursive;   
  color: #ff6600;                  
  text-shadow: 2px 2px 5px black;  
  letter-spacing: 2px;             
  text-align: center;   
  background: linear-gradient(to right, #ff00cc, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1:hover {
  color: #00ffcc;
  transform: scale(1.1);
  transition: 0.3s;
}

p {
  font-family: 'Courier New', monospace;
  color: #00ffcc;
  text-shadow: 0 0 5px #00ffcc, 0 0 10px #00cc99;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #00ffcc; }
  to   { text-shadow: 0 0 20px #00cc99; }
}
p {
  transition: 0.3s ease;
}

p {
  font-size: 1.8em;
  font-family: 'Georgia', serif;
  color: red;
  padding: 10px;
  border-radius: 4px;
}
p:hover {
  transform: scale(1.05);
  background-color: #ffe6e6;
  border-left: 5px solid #ff6600;
}

  audio {
    border: 2px solid #ff99cc;
    border-radius: 10px;
    background-color: #fff0f5;
    padding: 5px;
  }


