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

body {
	font-family: "Courier New", Courier, monospace;
	background-color: white;
	color: black;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 60px 80px;
}

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

h1 {
	font-size: 2.5rem;
	font-weight: normal;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.title {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	font-weight: normal;
}

.links {
	display: flex;
	gap: 2rem;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.links a {
	color: black;
	text-decoration: none;
	font-size: 1rem;
	transition: opacity 0.3s ease;
	border-bottom: 1px solid transparent;
}

.links a:hover {
	opacity: 0.7;
	border-bottom: 1px solid black;
}

/* Responsive design */
@media (max-width: 768px) {
	body {
		padding: 40px 50px;
	}

	h1 {
		font-size: 2rem;
		letter-spacing: 1px;
	}

	.title {
		font-size: 1rem;
	}

	.links {
		gap: 1.5rem;
	}

	.links a {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	body {
		padding: 30px 40px;
	}

	h1 {
		font-size: 1.5rem;
	}

	.links {
		flex-direction: column;
		gap: 1rem;
	}
}
