* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
	background-color: #1b1b1b;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
}

.container {
	max-width: 600px;
	width: 100%;
}

header {
	margin-bottom: 80px;
}

h1 {
	font-size: 72px;
	font-weight: 800;
	color: #e4e4e4;
	margin-bottom: 10px;
	letter-spacing: -1px;
}

h2 {
	font-size: 72px;
	font-weight: 800;
	color: #0066ff;
	line-height: 1.1;
	letter-spacing: -1px;
}

.update h3 {
	font-size: 48px;
	font-weight: 700;
	color: #c6c6c6;
	margin-bottom: 20px;
}

/* Responsive design */
@media (max-width: 600px) {
	h1 {
		font-size: 48px;
	}

	h2 {
		font-size: 48px;
	}

	.update h3 {
		font-size: 32px;
	}

	header {
		margin-bottom: 60px;
	}
}
