body {
  background-color: black;
  color: white;
  font-family: 'Cascadia Code', monospace;
}



.overlay {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
  border-radius: 10px;
}


.enter-button {
  display: inline-block;
  margin-top: 1em;
  text-decoration: none;
}

.button-image {
  width: 150px;
  height: auto;
  border-radius: 10px;
  animation: glow 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #00ffff;
}

.button-image:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00ffff;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #00ffff;
  }
  50% {
    box-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff;
  }
  100% {
    box-shadow: 0 0 5px #00ffff;
  }
}

p {
  text-align: center;
}