@font-face {
	font-family: 'DotGothic';
	src: url('./assets/DotGothic16-Regular.ttf');
}
body {
	background-color: black;
	color: red;
	font-family: DotGothic;
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pulse {
	animation: pulse 1s infinite alternate;
	color: #ff0;
	margin-top: calc(20% - 10px);
	text-align: center;
	font-size: 48px;
}

@keyframes pulse {
	from {
		text-shadow: 0 0 100px #ff0;
	}
	50% {
		text-shadow: 0 0 20px #ff0;
	}
	to {
		text-shadow: 0 0 12px #ff0;
	}
}
