91 lines
2.0 KiB
HTML
Executable File
91 lines
2.0 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Server Error | Floor It Hardwood Floors</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
html, body {
|
|
height: 100%;
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #0c0805;
|
|
color: #f0e8da;
|
|
}
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 20px;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
max-width: 600px;
|
|
}
|
|
.error-code {
|
|
font-size: 120px;
|
|
font-weight: 800;
|
|
color: #c88b2a;
|
|
line-height: 1;
|
|
margin-bottom: 20px;
|
|
}
|
|
h1 {
|
|
font-size: 36px;
|
|
font-weight: 600;
|
|
margin-bottom: 20px;
|
|
}
|
|
p {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
margin-bottom: 40px;
|
|
line-height: 1.6;
|
|
}
|
|
.button-group {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 60px;
|
|
}
|
|
a.btn {
|
|
display: inline-block;
|
|
padding: 12px 30px;
|
|
background-color: #c88b2a;
|
|
color: #0c0805;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
border-radius: 4px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
a.btn:hover {
|
|
background-color: #d99e3d;
|
|
}
|
|
.footer {
|
|
font-size: 14px;
|
|
color: #c88b2a;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="error-code">500</div>
|
|
<h1>Something Went Wrong</h1>
|
|
<p>We're experiencing a temporary issue. Please try again in a moment or contact us directly.</p>
|
|
<div class="button-group">
|
|
<a href="/" class="btn">Go to Homepage</a>
|
|
<a href="/contact/" class="btn">Contact Us</a>
|
|
</div>
|
|
<div class="footer">
|
|
<p>(716) 602-1429</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|