Files
2025-10-14 08:54:23 +02:00

51 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>403 - Forbidden</title>
<style>
body {
background-color: #f8f9fa;
color: #343a40;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.center {
text-align: center;
}
.center h1 {
font-size: 5rem;
color: #dc3545;
}
.center p {
font-size: 1.25rem;
}
.center a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.center a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="center">
<h1>403</h1>
<p>Nicht öffentlicher Bereich.</p>
<a href="/">Zurück zur Startseite</a>
</div>
</body>
</html>