body {
  font-family: "Questrial", arial;
  font-size: 1.0rem;
  line-height: 2.0rem;
  background-color: #000;
  color: #d0d0d0;
  margin: 5vh 10vh;
  max-width: 75vh;

}

h1 {
  color: #fff;
}

a {
  color: #779bff;
}

p {
  font-family: "Roboto", arial;
}

.light-font {
  font-family: "Roboto", arial;
  font-weight: 200;
  line-height: 1.8rem;
}

.neon-glow {
  color: #fff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #2563EB,
    0 0 40px #2563EB,
    0 0 80px #2563EB;
}

.divider {
  color: #ddd;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-shadow:
0 0 5px #ffffff,
0 0 5px #ffffff,
0 0 30px #0020ef;
}

@keyframes pulse {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #f30ce0, 0 0 20px #f30ce0;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 40px #38BDF8, 0 0 60px #0243db;
  }
}

.pulsing-glow {
  animation: pulse 3.5s ease-in-out infinite alternate;
}

.img-cli {
  width: 70vh;
  display: block;
}