* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Helvetica Neue", Arial, sans-serif;
	background: linear-gradient(135deg, #393D47, #2f3239);
	color: white;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
	text-align: center;
}

h1 {
    font-weight: bold;
    font-size: 2rem;
}

h2 {
    font-weight: normal;
	font-size: 1.5rem;
}

footer {
	position: absolute;
	bottom: 15px;
	font-size: 0.9rem;
	opacity: 0.8;
}

@media (max-width: 600px) {
	h1 {
		font-size: 1.6rem;
	}
	p {
		font-size: 1rem;
		padding: 0 1rem;
	}
}
