This commit is contained in:
Jörg Lohrer 2024-11-18 14:04:57 +01:00
parent 705daed1a7
commit abd9f3fd19

60
index.html Normal file
View file

@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="de"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AdventskalenDOER</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f4f4f4;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
background: white;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.logo {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
.message {
font-size: 1.2rem;
color: #333;
}
@media (max-width: 480px) {
.message {
font-size: 1rem;
}
}
</style>
</head>
<body cz-shortcut-listen="true">
<div class="container">
<img src="index-adventskalendoer-Dateien/fOERbico-Logo.png" alt="fOERbico Logo" class="logo">
<p class="message">Hier entsteht ein AdventskalendOER. Bitte versuchen Sie es später erneut.</p>
</div>
</body></html>