<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="1; url=/">
<title>404 Page Not Found</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f8f9fa;
color: #343a40;
text-align: center;
padding: 50px 20px;
line-height: 1.6;
margin: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
}
h1 {
font-size: 5rem;
margin: 0;
color: #6c757d;
}
h2 {
font-size: 1.5rem;
margin-top: 0;
margin-bottom: 30px;
}
p {
margin-bottom: 30px;
}
a {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.btn {
display: inline-block;
background-color: #007bff;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #0056b3;
text-decoration: none;
}
.redirect-message {
font-size: 0.9rem;
color: #6c757d;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>The page you requested could not be found.</p>
<p>You will be automatically redirected to the <a href="/">homepage</a> in 1 second.</p>
<a href="/" class="btn">Go to Homepage</a>
<p class="redirect-message">If you are not redirected automatically, please click the button above.</p>
</div>
</body>
</html>