* {
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
}

body {
	background: #0a0a0f;
	color: #e8e8f0;
	font-family: 'Press Start 2P', monospace;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	font-size: 8px;
	line-height: 1.6;
}

label {
    font-size: 10px;
    font-weight: normal;
    color: #a29bfe;
    text-shadow: 1px 1px 0px #2c3e50;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

h2, h1 {
	font-family: 'Press Start 2P', monospace;
	text-align: center;
	position: relative;
	animation: glow-text 3s ease-in-out infinite alternate;
}

h1 {
    font-size: 32px;
    text-shadow:
        	4px 4px 0px #2c3e50,
        	8px 8px 0px #34495e;
    margin-bottom: 40px;
    margin-top: 40px;
}

h2 {
    font-size: 16px;
    text-shadow:
    		2px 2px 0px #2c3e50,
    		4px 4px 0px #34495e;
    margin-bottom: 30px;
}

h2::before, h2::after, h1::before, h1::after {
	content: '★';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	animation: star-pulse 2s ease-in-out infinite alternate;
	color: #fdcb6e;
}

h1::before, h1::after {
	font-size: 18px;
}

h2::before, h2::after {
	font-size: 12px;
}

h2::before, h1::before {
	left: -40px;
}

h2::after, h1::after {
	right: -40px;
}