  body {
    margin: 0;
    background: black;
    color: #ffdf6c; /* golden sun color */
    font-family: monospace;
    font-size: 14px;
    line-height: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #copyrighttext {
	  font-size: 8px;
	}
  #screen {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  #ascii {
	top: 30vh;
    text-align: center;
    white-space: pre;
  }
  .green { color: #00ff9f; } /* Matrix text */

  /* Menu styles */
  #menu {
    margin-top: 20px;
    display: flex;
    gap: 40px;
    font-size: 16px;
  }
  #menu a {
    text-decoration: none;
    color: #ffdf6c;
    transition: color 0.3s;
  }
  #menu a:hover {
    color: #00ff9f;
  }