aaaaaaaaaaaaaaa

This commit is contained in:
Didier Slof 2023-02-19 15:36:25 +01:00
parent 544e368d13
commit 7175c9037c
Signed by: didier
GPG key ID: 01E71F18AA4398E5
2 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,40 @@
<html>
<head>
<title>50x Error</title>
<style>
:root {
--background: #1e1e1e;
--foreground: #d4d4d4;
--accent: #007acc;
}
body {
display: grid;
place-items: center;
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
h1 {
font-size: 2em;
margin: 0;
margin-bottom: 0.5em;
}
p {
margin: 0;
}
a {
color: var(--accent);
text-decoration: none;
}
</style>
</head>
<body>
<h1>50x Error</h1>
<p>Sorry, the server is currently unavailable. Please try again later.</p>
</body>
</html>