/* 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." */

/*background and animation*/ 

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/SpaceMono-Regular.ttf) format("truetype");
}

@font-face {
font-family: "Space Mono";
 font-style: normal;
font-weight: bold;
src: url(/fonts/SpaceMono-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Ghost";
  font-style: normal;
  src: url(fonts/ghostofdoom.ttf);
  }

@font-face {
  font-family: "Nostalgic";
  src: url(fonts/nostalgic.ttf);
  }
  
body {
 background-color: #232329; 
 background-image: url(/halloween.png); 
 background-size: 1000px auto;
 background-repeat:repeat;
}

h1,h2,h3,h4,h5,h6,
p,
li,
a {
font-family: "Space Mono";
line-height: 1.2em;
}

h1, h2, p, li {
font-family: "Space Mono";
font-weight: 400;
color: #FFD4FB;
}

a {
color: #D9FCB1;
}

a:hover {
color: #C488FC;
}