body {
	background-color: #311b2b;

	font-family: Helvetica;
	color: white;
}

#heading {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

	text-align: center;
	margin: auto;
	width: 60%;
	border: none;
	padding: 10px;
}

h1 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #8f8f8f;
}

p {
	font-size: 18px;
}

.glow {
  font-size: 80px;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow:
        0 0 10px #fff,
        0 0 15px #fff,
        0 0 20px #b87be2,
        0 0 25px #b87be2,
        0 0 30px #b87be2,
        0 0 35px #b87be2,
        0 0 40px #b87be2;
  }

  to {
    text-shadow:
        0 0 15px #fff,
        0 0 20px #aa9ef0,
        0 0 25px #aa9ef0,
        0 0 30px #aa9ef0,
        0 0 35px #aa9ef0,
        0 0 40px #aa9ef0,
        0 0 45px #aa9ef0;
  }
}

