<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página no encontrada</title>
<style>
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
}
h1 {
font-size: 6em;
margin: 0;
color: #444;
}
p {
font-size: 1.5em;
color: #333;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #444;
color: white;
text-decoration: none;
border-radius: 3px;
}
a:hover {
background-color: #222;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Página no encontrada</p>
<a href="/">Volver al inicio</a>
</div>
</body>
</html>