/* style.css */

body
{
	margin: 0;
	padding: 0;
	background-color: #232323;
	/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
	color: rgb(255,128,0);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	text-align: center;
}

.title
{
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

	max-height: 90vh;
	height: 90%;
	max-width: 90vw;
	width: 90%;

	font-size: 23vw;
	font-family: Consolas, 'Courier New', monospace;
	/* color: rgb(255,128,0); */
	animation: colorPulse 23s infinite;

}

@keyframes colorPulse
{
	0%
	{
		color: rgb(255,128,0,0);
	}
	33%
	{
		color: rgb(255,128,0,1);
	}
	67%
	{
		color: rgb(255,128,0,1);
	}
	100%
	{
		color: rgb(255,128,0,0);
	}
}