body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: black;
  }
  
  canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  #matrix {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255); /* Adjust the color to fit the Matrix theme or as you like */
    font-family: 'Courier New', monospace;
    text-align: center;
    white-space: pre-wrap; /* Keeps the spacing and line breaks in the text */
    width: 80%; /* Adjust the width as needed */
    font-size: 48px; /* Adjust the font size as needed */
    line-height: 1.5; /* Adjust line spacing to ensure readability */
  }
  
  /* Additional styles for the text appearance, if needed */
  canvas {
    z-index: 1;
    /* Other styles... */
  }
  
  #matrix {
    z-index: 2;
    /* Other styles... */
  }
  
  .blink {
    animation: blink-animation 0.7s steps(5, start) infinite;
    -webkit-animation: blink-animation 0.7s steps(5, start) infinite;
    color: rgb(205, 50, 50); /* Adjust as needed */
  }
  
  @keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }
  
  @-webkit-keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }
  