| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>404 - Page Not Found</title> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| body { |
| font-family: 'Arial', sans-serif; |
| background-color: #f4f4f4; |
| color: #333; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| height: 100vh; |
| } |
| .container { |
| text-align: center; |
| max-width: 600px; |
| } |
| h1 { |
| font-size: 8rem; |
| color: #FF6F61; |
| } |
| h2 { |
| font-size: 2rem; |
| margin: 1rem 0; |
| } |
| p { |
| font-size: 1.1rem; |
| color: #666; |
| margin-bottom: 2rem; |
| } |
| a { |
| text-decoration: none; |
| color: #fff; |
| background-color: #FF6F61; |
| padding: 10px 20px; |
| border-radius: 5px; |
| font-size: 1.1rem; |
| transition: background-color 0.3s ease; |
| } |
| a:hover { |
| background-color: #ff4a3b; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <h1>404</h1> |
| <h2>Oops! Page Not Found</h2> |
| <p>Sorry, but the page you were looking for doesn't exist, or may have been moved.</p> |
| <a href="/">Go Back to Homepage</a> |
| </div> |
| </body> |
| </html> |
| |