body {
  background-color: #1c1c1c;
  background-image: url('/images/hacker_background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Courier New", monospace;
  color: #33ff33; /* Matrix green */
  text-align: center;
}

h1 {
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: 48px;
  background-image: linear-gradient(to right, #33ff33, #000);
  -webkit-background-clip: text;
  color: transparent;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  margin: 15px;
  border: 2px solid #00ff00;
  padding: 10px;
  max-width: 300px;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.caption {
  margin-top: 10px;
  font-size: 14px;
}

.donation {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #33ff33;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  text-align: center;
}

.donation h2 {
  margin-bottom: 10px;
}

.donation code {
  font-family: "Courier New", monospace;
  background-color: #0f0f0f;
  padding: 5px;
  border-radius: 5px;
}

h1, h2 {
  /* ... */
  text-shadow: 0 0 10px #33ff33, 0 0 20px #33ff33, 0 0 30px #33ff33, 0 0 40px #33ff33;
  
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #33ff33, 0 0 20px #33ff33;
}

@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }
}
