html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
@font-face {
  font-family: 'matrix';
  src: url('./Matrix-MZ4P.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@keyframes flicker_prompt {
  0%, 50%{
    opacity: 1;
    text-shadow:
      0 0 10px #00bfff,
      0 0 20px #00bfff,
      0 0 40px #00ffff,
      0 0 60px #1ecfff;
  }
  50%, 100% {
    opacity: 0;
  }
}
.glitch1 {
  color: #ffffff;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
  animation: flicker_prompt 1s infinite steps(2, start);
}
.box{
  border-radius: 622px; 
  border: 5px solid #0af20a;
  box-shadow: 0 0 20px #43f243, 0 0 80px #04f204;
  background-color:transparent;
  padding: 1%;
}

.enter {
  color: white;
  text-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
  font-size: clamp(34px, 8vw, 58px);
  font-family: 'matrix';
  letter-spacing: 2px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.box:hover {
  animation: flame 0.4s ease-in-out infinite alternate, flicker 0.08s infinite;
  color: #ffffff;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
  border-color: #ffffff;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(0, 247, 255, 0.9),
    0 0 40px rgba(0, 251, 255, 0.7);
}
