/* Reset some default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
canvas#matrix{
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;  /* Ensures the canvas is behind other content */
}
/* Set the overall terminal style */
body {
  background-color: black;
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  padding: 20px;
}

div#links{
  text-align: center;
  padding: 20px;
}
/* Center content for a clean, terminal-like display */
header,
footer {
  text-align: center;
  padding: 20px;
}

/* Style the header title */
header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Style the "Under construction" message with a blinking effect */
header p {
  font-size: 1.5rem;
  animation: blink 1.5s step-start infinite;
}

/* Footer styling for subtle detail */
footer p {
  font-size: 1rem;
  opacity: 0.7;
}

a{
  color: #00FF00;
}
/* Define the blinking animation */
@keyframes blink {
  50% {
    opacity: 25%;
  }
}
