/* Made by ZGShae in 2021 */

/* Framework and fonts */

body {
  background-color: black;
  color: grey;
  font-family: "Asimov", sans-serif;
  text-align: center;
}

@font-face {
    font-family: "XBAND Rough";
    src: url('xband-ro.ttf');
}

@font-face {
    font-family: "Asimov";
    src: url('asimovprintc.otf');
}

/* Lists */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Images */

img {
    max-height: 300px;
}

/* Fonts */

h1 {
  font-family: "XBAND Rough", sans-serif;
  color: black;
  text-shadow: 0 0 20px purple, 0 0 10px purple, 0 0 5px pink;
}

h2 {
  font-family: "XBAND Rough", sans-serif;
  color: black;
  text-shadow: 0 0 20px purple, 0 0 10px purple, 0 0 5px pink;
}

h3 {
  font-family: "XBAND Rough", sans-serif;
  color: black;
  text-shadow: 0 0 10px green, 0 0 5px lime;
}

h4 {
  font-family: "XBAND Rough", sans-serif;
  color: black;
  text-shadow: 0 0 20px green, 0 0 10px lime, 0 0 5px green;
}

h5 {
  font-family: "XBAND Rough", sans-serif;
  color: black;
  text-shadow: 0 0 20px red, 0 0 10px red, 0 0 5px red;
}

h6 {
  font-family: "XBAND Rough", sans-serif;
  color: black;
  text-shadow: 0 0 20px red, 0 0 10px red, 0 0 5px red;
}

p {
  color: grey;
  font-family: "Asimov", sans-serif;
  text-align: center;
}

/* Footer */

footer {
  background-image: url(resources/buckle.png), url(resources/studded_belt.png);
  background-size: auto 200%, auto 80%;
  background-position: center, center;
  background-repeat: no-repeat, repeat-x;
  color: white !important;
  text-shadow: 0 0 10px black, 0 0 7px black, 0 0 5px black, 0 0 2px black;
  margin-top: 20px;
}

/* DIV */

div {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Functions and Classes ... (use <span class=""></span) */

a {color: purple; text-decoration: none}
a:hover {color: pink; text-decoration: underline}
a:visited {color: green; text-decoration: underline}
.tape {width: 25%; background: yellow; color: black; font-weight:bold}
.glow {color: black; text-shadow: 0 0 10px red, 0 0 5px red}

/* Just the blink tag ... (use <span class="blink"></span> to use) */

.blink {
  animation: blink 1s steps(1, end) infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
