  
    body {
      background-color: #000;
      color: #e0e0ff;
      font-family: 'Share Tech Mono', monospace;
      padding: 2em;
      text-align: center;
      text-shadow: 0 0 4px #33ffff;
    }h1 a.flicker-title {
  font-size: 3em;
  color: #ff33cc;
  text-decoration: none;
  text-shadow:
    0 0 4px #ff33cc,
    0 0 8px #ff66ff,
    0 0 12px #ff33cc;
  animation: flicker 3s infinite alternate;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}

.tagline {
  color: #ff99ff;
  font-size: 1.2em;
  text-shadow: 0 0 6px #ff66cc;
}

img {
  border-radius: 10%;
  width: 150px;
  height: 150px;
}

p {
  font-size: 1.1em;
  color: #33ffff;
  text-shadow: 0 0 6px #33ffff;
  max-width: 600px;
  margin: 1em auto;
}

strong {
  color: #ff66ff;
  text-shadow: 0 0 6px #ff66ff;
  display: block;
  margin-top: 2em;
}

a {
  display: inline-block;
  margin: 0.3em 0;
  padding: 0.5em 1em;
  color: #00ffff;
  font-size: 1.1em;
  font-family: 'Share Tech Mono', monospace;
  background-color: transparent;
  border: 2px solid #00ffff;
  border-radius: 10px;
  text-decoration: none;
  text-shadow: 0 0 6px #00ffff;
  box-shadow: 0 0 10px #00ffff40;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #ffffff;
  background-color: #00ffff20;
  box-shadow: 0 0 12px #00ffff, 0 0 24px #33ffff;
  transform: scale(1.05);
}

.footer {
  margin-top: 3em;
  font-size: 0.9em;
  color: #ff99ff;
  text-shadow: 0 0 5px #ff66cc;
  font-style: italic;
}

  
  
  
  
  
  