/* General Styles */
body {
	font-family: Arial, Helvetica, sans-serif;
	background: #1a1a1a;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	text-align: center;
	min-height: 100vh;
}

/* Headings */
h1 {
	font-size: 5rem;
	color: #ff6b6b;
	margin: 0;
}

h2 {
	font-size: 2rem;
	color: #ffcc00;
	margin-top: 20px;
}

/* Paragraphs */
p {
	font-size: 1.5rem;
	margin: 10px 0;
}

/* Links */
a {
	color: #4db8ff;
	text-decoration: none;
	font-size: 1.2rem;
}

a:hover {
	text-decoration: underline;
}

/* Icons */
.icon {
	font-size: 6rem;
	color: #ffcc00;
	margin-bottom: 20px;
}

/* Lists */
ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

li {
	margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	p {
		font-size: 1.2rem;
	}

	.icon {
		font-size: 4rem;
	}
}