<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>404 Error</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:
Segoe UI,
Arial;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
color: #fff;
text-align: center;
padding: 20px;
}
.box {
max-width: 420px;
width: 100%;
padding: 40px 25px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(8px);
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}
h1 {
font-size: 90px;
font-weight: 800;
background: linear-gradient(45deg, #00e5ff, #00ff9d);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h2 {
margin-top: 10px;
font-size: 24px;
}
p {
margin-top: 10px;
font-size: 14px;
opacity: 0.85;
}
a {
display: inline-block;
margin-top: 22px;
padding: 11px 24px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
color: #fff;
background: linear-gradient(45deg, #00c6ff, #0072ff);
transition: 0.3s;
}
a:hover {
transform: translateY(-2px);
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
@media (max-width: 500px) {
h1 {
font-size: 70px;
}
h2 {
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="box">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>The page you are looking for doesn't exist or has been moved.</p>
<a href="https://meghalayaadventures.com">Go Home</a>
</div>
</body>
</html>