/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

 
  @font-face {
  font-family: 'kongtext';
  src: url(https://wraith2552.neocities.org/kongtext/kongtext.woff);
}

body {
  background-color: #1E1830;
  color: #D9A834;
  font-family:'kongtext';
}
  
 
/* getting rid of the broken code breaks the working one??? */
/* ohh im dumb*/
a:link {color: #9134D9;}

a:visited {
  color: #46346A;
}

a:hover {
  color: #A97EFF;
}

a:active {
  color: white;
} 
