Spaces:
Build error
Build error
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>404 - Not Found</title> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap'); | |
body, html { | |
margin: 0; | |
padding: 0; | |
font-family: 'Inter', sans-serif; | |
background-color: #f7f7f7; /* Light gray background */ | |
background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Subtle geometric pattern */ | |
background-repeat: repeat; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
height: 100vh; | |
color: #333; | |
} | |
.container { | |
background: rgba(255, 255, 255, 0.9); | |
border: 1px solid #ddd; | |
border-radius: 8px; | |
width: 100%; | |
max-width: 400px; | |
padding: 50px; | |
box-sizing: border-box; | |
text-align: center; | |
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); | |
backdrop-filter: blur(10px); | |
-webkit-backdrop-filter: blur(10px); | |
} | |
.container h1 { | |
margin-bottom: 20px; | |
font-size: 26px; | |
font-weight: 600; | |
color: #1a1a1a; | |
} | |
.container p { | |
font-size: 18px; | |
color: #4a4a4a; | |
margin-bottom: 35px; | |
line-height: 1.5; | |
} | |
.button { | |
padding: 14px 0; | |
margin: 12px 0; | |
font-size: 16px; | |
border-radius: 6px; | |
cursor: pointer; | |
width: 100%; | |
border: 1px solid #ccc; | |
background-color: #007BFF; | |
color: #fff; | |
transition: background-color 0.3s ease, border-color 0.3s ease; | |
} | |
.button:hover { | |
background-color: #0056b3; | |
border-color: #0056b3; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>You have ventured into the abyss...</h1> | |
<p>To get back to reality, click the button below.</p> | |
<form action="/" method="get"> | |
<button type="submit" class="button">Return to Home</button> | |
</form> | |
</div> | |
</body> | |
</html> | |