@font-face {
    font-family: 'nunitoregular';
    src: url('nunito-regular-webfont.woff2') format('woff2'),
         url('nunito-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
	background-color: rgb(0, 0, 0);
}

#texto {
	font-family: 'nunitoregular', sans-serif;
	font-size: 8vw;
	color: #EB868C;
	text-align: center;
	position: absolute;
	top: 35%;
	word-break: keep-all;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	-webkit-animation: glow 1s ease-in-out infinite alternate;
	-moz-animation: glow 1s ease-in-out infinite alternate;
	animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
	from {
		text-shadow: 0 0 10px #EB868C, 0 0 20px #EB868C, 0 0 30px #FF1F17, 0 0 40px #FF1F17, 0 0 50px #FF1F17, 0 0 60px #FF1F17, 0 0 70px #FF1F17;
	}
	to {
		text-shadow: 0 0 20px #EB868C, 0 0 30px #EB868C, 0 0 40px #FF1F17, 0 0 50px #FF1F17, 0 0 60px #FF1F17, 0 0 70px #FF1F17, 0 0 80px #FF1F17;
	
	}
}


