@font-face {
    font-family: "DarkHorse";
    src: url("/fonts/DarkHorse.ttf") format("truetype");
}

@font-face {
    font-family: "Schrift";
    src: url("/fonts/Schrift.ttf") format("truetype");
}

@font-face {
    font-family: "AlexandrasStempelkasten";
    src: url("/fonts/AlexandrasStempelkasten.ttf") format("truetype");
}

body {
  font-family: "Schrift";
  background-color: black;
  color: white;
}

h1 {
  font-family: "DarkHorse";
  text-align: center;
  color: black;
  font-size: 2.25em;
  z-index: 10;
}

.title {
  font-family: "AlexandrasStempelkasten";
  font-size: 2em;
  color: white;
}

.glow {
  position: absolute;
  top: -20%;
  left: 39%;
  width: 20em;
  height: 20em;
  border-radius: 50%;
  background-color: #fff;
  box-shadow:
    0 0 60px 30px #fff,
    0 0 100px 60px #fff,
    0 0 140px 90px #fff;
  z-index: -1;
  animation: glowing 2s ease-in-out infinite alternate;
}


@-webkit-keyframes glowing {
  from {
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff, 0 0 70px #fff;
  }
  to {
    box-shadow: 0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 90px #fff, 0 0 100px #fff;
  }
}

a {
 color: inherit;
 text-decoration: none; 
}

a.title:hover {
 opacity: 0.5;
}