* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #e0e0e0;
	background: #1a1a1a;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 26vh;
	font-family: 'Georgia', 'Times New Roman', serif;
	font-size: 18px;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

div {
	max-width: 800px;
	width: 100%;
	text-align: center;
}

p {
	font-size: 3.5em;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 
		0 0 10px rgba(255, 255, 255, 0.3),
		0 0 20px rgba(255, 255, 255, 0.2),
		0 2px 4px rgba(0, 0, 0, 0.8);
	margin: 0;
	animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	p {
		font-size: 2em;
		letter-spacing: 1px;
	}
	
	div {
		padding: 40px 30px;
	}
}

@media (max-width: 480px) {
	p {
		font-size: 1.5em;
	}
	
	div {
		padding: 30px 20px;
	}
}
