body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  position: relative;
  background-color: black;
  color: white;
  overflow: hidden; /* To hide overflowing elements */
  cursor: url('cursor.png'), auto; /* Custom cursor */
}

.content-box {
  background: rgba(255, 255, 255, 0); /* Fully transparent */
  border-radius: 15px;
  padding: 20px;
  border: 3px solid black; /* Initial border color */
  animation: blinkBorder 1.5s infinite; /* Blinking border animation */
  text-align: center;
  z-index: 1;
}

@keyframes blinkBorder {
  0%, 100% {
    border-color: black;
  }
  50% {
    border-color: white;
  }
}

h1, p {
  font-size: 2em;
  margin: 0.5em 0;
}

/* Removing bullet points and centering the links */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  display: block;
  margin: 10px 0;
}

ul li a {
  text-decoration: none;
  color: white;
}

.small-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.8em;
  color: gray;
  animation: none; /* No effect on this text */
}

/* Flashing text effect */
@keyframes flash {
  0%, 100% {
    color: white;
  }
  50% {
    color: gray;
  }
}

span {
  display: inline-block;
  animation: flash 2s infinite;
}

h1 span:nth-child(odd), p span:nth-child(odd) {
  animation-delay: 1s;
}

/* Background matrix effect */
@keyframes matrix {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.matrix-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none; /* So the matrix text doesn't interfere with interactions */
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  background: black;
}

.matrix-text span {
  color: white;
  font-size: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  margin: 5px;
  animation: matrix 5s linear infinite;
}

.matrix-text span:nth-child(odd) {
  animation-delay: 2.5s;
}

/* Ensure the background scales properly */
body {
  background-size: cover;

  
}
