<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Handgolf Eröffnung</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #99976E;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
text-align: center;
color: #F3E1C1;
overflow: hidden;
}
img {
max-width: 300px;
height: auto;
opacity: 0;
animation: fadeIn 2s ease forwards;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
h1, h2 {
margin: 20px 0 0 0;
}
.impressum {
margin-top: 40px;
font-size: 0.8em;
}
.impressum a {
color: #F3E1C1;
text-decoration: none;
}
.impressum a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<img src="Handgolf-Color-Logo.svg" alt="Handgolf Logo">
<h1>Eröffnung am 5. Juli 2025</h1>
<h2>Reservierungen und Tickets ab dem 3. Juli 2025</h2>
<div class="impressum">
<a href="https://www.schwarzlichthof.de/kontakt/impressum/" target="_blank">Impressum</a>
</div>
</body>
</html>