hillcrestlakers.org Ads.txt file
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found</title>
<link rel="shortcut icon" type="image/ico" href="/favicon.ico">
<link rel="stylesheet" href="/common/bootstrap/5.3.3/css/bootstrap.min.css">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
.logo {
position: absolute;
top: 20px;
left: 20px;
z-index: 10;
}
.logo img {
width: 178px;
}
.backgroundContainer {
background-image: url('img/PageNotFound.png');
background-size: contain;
background-position: top center;
background-repeat: no-repeat;
width: 100%;
min-height: 400px;
margin-top: 50px;
}
.contentContainer {
padding: 20px;
max-width: 500px;
text-align: center;
margin-top: -50px;
}
p {
margin-bottom: 2.5rem;
}
#errorHeader {
color: #277eb3;
font-size: 2.5rem;
font-weight: bold;
margin: 20px 0;
}
.errorButton {
border-radius: 50px;
background-color: #277eb3;
padding: 10px 30px;
color: white;
text-decoration: none;
font-size: 1rem;
transition: background-color 0.3s ease;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
#errorHeader {
font-size: 2rem;
}
.errorButton {
font-size: 0.9rem;
padding: 8px 20px;
}
.logo img {
width: 148px;
}
}
@media (max-width: 768px) {
.backgroundContainer {
min-height: 300px;
}
}
@media (max-width: 600px) {
.backgroundContainer {
min-height: 200px;
}
.logo {
position: absolute;
top: 20px;
left: 50%; /* Move it to the horizontal center of the parent */
transform: translateX(-50%); /* Offset it by half of its own width */
z-index: 10;
}
.backgroundContainer {
display: none;
}
#errorHeader {
font-size: 1.5rem;
}
.contentContainer {
margin-top: -200px;
}
}
@media (max-width: 400px) {
.backgroundContainer {
display: none;
}
}
@media (max-width: 400px) {
.contentContainer {
margin-top: -100px;
}
}
</style>
</head>
<body>
<div class="logo">
<img src="/img/home/logo.png" alt="Logo">
</div>
<div class="backgroundContainer"></div>
<div class="contentContainer">
<h1 id="errorHeader">Page Not Found</h1>
<p>The page you requested does not exist or might have been removed. Please check the URL for errors or navigate to the Find Schedule page using the button below.</p>
<a href="/find/find.aspx" class="errorButton">Find Schedule</a>
</div>
</body>
</html>