41 lines
766 B
HTML
41 lines
766 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Not Found</title>
|
|
<style>
|
|
.center-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 60vh;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #181a20;
|
|
color: #e0e0e0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
h1 {
|
|
font-size: 48px;
|
|
color: #fafafa;
|
|
}
|
|
p {
|
|
font-size: 24px;
|
|
color: #b0b0b0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="center-container">
|
|
<h1>404 Not Found</h1>
|
|
<p>The requested resource could not be found.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|