<!DOCTYPE html>
<html lang="en">
<head>
<style>
html,
body {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
}
/* Center the content */
.container {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* Center text and give it some padding */
.text-center {
text-align: center;
padding: 20px;
}
/* Style the logo */
.logo {
height: 150px; /* Adjust the height and width as needed */
margin-bottom: 20px;
background-image: url('https://ticketing.alteogroup.net/bundles/uvdeskcoreframework/images/logo.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
/* Style for the main headline */
h1 {
font-size: 48px;
color: #666;
}
/* Style for the sub-headline */
h2 {
font-size: 24px;
margin-top: 10px;
color: #666;
}
/* Style for the paragraph */
p {
font-size: 16px;
color: #777;
margin: 10px 0 20px;
}
/* Button styling */
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #53585a;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
transition: background-color 0.3s;
}
/* Add icon to the button */
.btn .icon {
margin-right: 10px;
font-size: 18px;
}
/* Button hover effect */
.btn:hover {
background-color: #53585abd;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="404.css" />
</head>
<body>
<div class="container">
<div class="text-center">
<div class="logo"></div>
<h1>Whoops, 404</h1>
<h2>Page not found</h2>
<p>The page you were looking for does not exist.</p>
<a href="/" class="btn">
<span class="icon"></span>
Back to Home
</a>
</div>
</div>
</body>
</html>