.centered {
	position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flash {
   animation-name: flash;
    animation-duration: 0.6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes flash {
    from {color: DeepSkyBlue;}
    to {color: black;}
}

h1{
	font-family: 'Raleway',sans-serif;
	position: absolute;
    margin: auto;
	left: 50%;
	below: 10%; 
	transform: translate(-50%, 50%);
}

body {
	background-color: black;
}


