@charset "UTF-8";

/* Background: gradient from dark grey to black */
body {
  background:linear-gradient(to bottom,#2e2e2e,#000000);
  color:white;
  font-family:"UnifrakturCook","Fraktur","Old English Text MT",cursive,serif;
  font-size:18px;
}

/* Headings */
h1,h2,h3,h4 {
  font-family:"UnifrakturCook","Fraktur","Old English Text MT",cursive,serif;
  color:white;
  font-size:24px;
}

/* Links */
a {
  color:white;
  text-decoration:none;
  font-size:18px;
}

a:hover {
  color:#cccccc;
  text-shadow:0 0 5px white;
}

/* General elements */
div,span,td,p {
  font-family:"UnifrakturCook","Fraktur","Old English Text MT",cursive,serif;
  color:white;
  background:transparent!important;
  font-size:18px;
}

/* Text glow */
body,h1,h2,h3,h4,p,a {
  text-shadow:1px 1px 3px #000000;
}