/* Source for the glowing text: https://codepen.io/jackrobertscott/pen/OMEpKM */
/* Edited by Arttu Ylhävuori (text alignment, flex box usage and font sizes) */

html {
  height: 100%;
  cursor: none;
}

body {
  background-color: #141414;
  background-image: linear-gradient(45deg, #141414, #212121);
  height: 100%;
}

.glow {
  display: flex;
  width: 50%;
  height: 100%;
  margin: auto;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.glow span {
  color: #ffffff;
  text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #0ba9ca,
    0 0 30px #0ba9ca, 0 0 40px #0ba9ca, 0 0 50px #0ba9ca;
  animation: blink 1.5s infinite alternate;
}
.glow .major {
  font-size: 3em;
}
.glow .minor {
  font-size: 2em;
}

@keyframes blink {
  100% {
    text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff,
      0 0 40px #0ba9ca, 0 0 70px #0ba9ca, 0 0 80px #0ba9ca;
  }
}

/*# sourceMappingURL=style3.css.map */
