* { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
} 

body { 
	font-family: Arial, sans-serif; 
	background-color: #000; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	height: 100vh; 
} 

.error-container { 
	text-align: center; 
	background-color: #fff; 
	padding: 00px; 
	border-radius: 15px; 
	box-shadow: 0 2px 6px rgba(0.0, 0, 0, 0.0);
	width: 1000px; 
} 



h1 { 
	font-size: 100; 
	color: #000; 
} 

h2 { 
	font-size: 2rem; 
	color: #ff5733; 
}
 
h3 { 
	font-size: 1.5rem; 
	color: #ff5733; 

p { 
	font-size: 1.2rem; 
	color: #333; 
	margin-bottom: 20px; 
} 

a { 
	text-decoration: none; 
	background-color: #ff0000; 
	color: #fff; 
	padding: 10px 30px; 
	border-radius: 10px; 
	font-weight: bold; 
	transition: background-color 1.3s ease; 
} 

a:hover { 
	background-color: #ff0000; 
}
