71 lines
1.6 KiB
HTML
71 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>504 Gateway Timeout</title>
|
||
<style>
|
||
body {
|
||
font-family: Arial, sans-serif;
|
||
background-color: #f8f9fa;
|
||
color: #343a40;
|
||
text-align: center;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-between;
|
||
min-height: 100vh;
|
||
margin: 0;
|
||
}
|
||
.container {
|
||
flex: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
h1 {
|
||
font-size: 2.5em;
|
||
margin-bottom: 20px;
|
||
}
|
||
p {
|
||
font-size: 1.2em;
|
||
margin-bottom: 30px;
|
||
}
|
||
.footer {
|
||
font-size: 0.9em;
|
||
color: #6c757d;
|
||
position: fixed;
|
||
bottom: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
background-color: #ffffff;
|
||
padding: 10px 0;
|
||
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
|
||
}
|
||
@media (max-width: 600px) {
|
||
h1 {
|
||
font-size: 2em;
|
||
}
|
||
p {
|
||
font-size: 1em;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>504 Gateway Timeout</h1>
|
||
<p>
|
||
Oops! The server didn't receive a timely response from an upstream
|
||
server.
|
||
</p>
|
||
</div>
|
||
<div class="footer">
|
||
<p>
|
||
Server timeout: It's like waiting for a bus in a town with no schedule –
|
||
you never know when it's coming!
|
||
</p>
|
||
</div>
|
||
</body>
|
||
</html>
|