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

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

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

body {
  font-family: "Righteous";
  background-color: #0F0F0F;
  color: #F5F5F5;
}

h1 {
  font-family: "ChristmasPudding";
  text-align: center;
  color: #F5F5F5;
  font-size: 4em;
  animation: rainbow 3s ease .5s infinite alternate;
}

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

.hover {
  font-family: "Righteous"; 
  font-size: 1.25em;
}

.hover:hover {
  text-shadow: 2px 2px #e16331, 4px 4px #ebb43f, 6px 6px #929335, 8px 8px #3e938e, 10px 10px #334f5c;
  font-size: 1.5em;
}

@keyframes rainbow {
  50% { text-shadow: 5px 5px #e16331, 10px 10px #ebb43f, 15px 15px #929335, 20px 20px #3e938e, 25px 25px #334f5c;}
  60% { text-shadow: 5px 10px #e16331, 10px 10px #ebb43f, 15px 15px #929335, 20px 20px #3e938e, 25px 25px #334f5c;}
  70% { text-shadow: 5px 10px #e16331, 10px 15px #ebb43f, 15px 15px #929335, 20px 20px #3e938e, 25px 25px #334f5c;}
  80% { text-shadow: 5px 10px #e16331, 10px 15px #ebb43f, 15px 20px #929335, 20px 20px #3e938e, 25px 25px #334f5c;}
  90% { text-shadow: 5px 10px #e16331, 10px 15px #ebb43f, 15px 20px #929335, 20px 25px #3e938e, 25px 25px #334f5c;}
  100% { text-shadow: 5px 10px #e16331, 10px 15px #ebb43f, 15px 20px #929335, 20px 25px #3e938e, 25px 30px #334f5c;}
}