updated css

This commit is contained in:
Jonas_Jones 2025-06-09 02:21:45 +02:00
parent 98b3b8ccc9
commit 783eed8fd5

View file

@ -1,10 +1,34 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>404 Not Found</title> <meta charset="UTF-8">
</head> <title>404 Not Found</title>
<body> <style>
<h1>404 Not Found</h1> body {
<p>This project is not available for static sharing.</p> background-color: #f8f9fa;
</body> color: #212529;
</html> font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
}
p {
font-size: 1.2rem;
color: #6c757d;
}
</style>
</head>
<body>
<h1>404 Not Found</h1>
<p>This project does not exist or is not available for static sharing.</p>
</body>
</html>