body {
	background-color: #000000;
	font-family: helvetica, arial, sans-serif;
	color: yellow;
}

h1 {
	text-align: center;
	font-size: 80px;
	margin-bottom: 5px;
}

.elementToFadeInAndOut {
    opacity: 1;
    animation: fade 4s linear;
    animation-iteration-count: infinite;
}


@keyframes fade {
  0%,100% { opacity: 0 }
  50% { opacity: 1 }
}
