change css and dark theme
All checks were successful
build-server / build (push) Successful in 1m15s

This commit is contained in:
2025-09-06 15:29:46 +04:00
parent 0d09ac091b
commit abaec99ef5

View File

@@ -4,23 +4,37 @@
<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;
text-align: center;
margin-top: 50px;
background-color: #181a20;
color: #e0e0e0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
h1 {
font-size: 48px;
color: #333;
color: #fafafa;
}
p {
font-size: 24px;
color: #666;
color: #b0b0b0;
}
</style>
</head>
<body>
<h1>404 Not Found</h1>
<p>The requested resource could not be found.</p>
<div class="center-container">
<h1>404 Not Found</h1>
<p>The requested resource could not be found.</p>
</div>
</body>
</html>