@font-face {
  font-family: 'TF2Build';
  src: url('Fonts/tf2build.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: black;
  color: white;
  font-family: 'TF2Build', sans-serif;
  text-shadow: 
    -2px -2px 0 green,
     2px -2px 0 green,
    -2px  2px 0 green,
     2px  2px 0 green;
  text-align: center;
  margin: 20px;
}

a {
  color: #39FF14; /* Bright "hacker green" */
  text-decoration: none; /* Optional: removes underline */
}

a:hover {
  color: white; /* Changes color on hover for interactivity */
}   