<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Vital-Apotheke Schleiden – Hinweis</title>
<meta name="description" content="Hinweis: Die Internetseite der Vital-Apotheke Schleiden ist umgezogen." />
<style>
:root {
--red: #ff0000; /* knallrot */
--text: #ffffff;
--btn-bg: #ffffff;
--btn-text: #c00000;
--btn-bg-hover: #f2f2f2;
--btn-ring: rgba(255,255,255,0.6);
--font-stack: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0;
background: var(--red);
color: var(--text);
font-family: var(--font-stack);
line-height: 1.5;
display: grid;
place-items: center;
padding: 2rem;
}
main {
width: 100%;
max-width: 52rem;
text-align: center;
}
h1 {
font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
font-weight: 700;
margin: 0 0 1rem 0;
letter-spacing: 0.2px;
}
p {
font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
margin: 0 0 2rem 0;
}
.button {
display: inline-block;
font-weight: 700;
text-decoration: none;
background: var(--btn-bg);
color: var(--btn-text);
padding: 0.9rem 1.25rem;
border-radius: 999px;
border: none;
box-shadow: 0 6px 16px rgba(0,0,0,0.15);
transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}
.button:hover {
background: var(--btn-bg-hover);
transform: translateY(-1px);
box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.button:focus-visible {
outline: none;
box-shadow: 0 0 0 4px var(--btn-ring), 0 6px 16px rgba(0,0,0,0.15);
}
.url {
font-weight: 800;
white-space: nowrap;
}
footer {
margin-top: 2rem;
font-size: 0.875rem;
opacity: 0.8;
}
</style>
</head>
<body>
<main>
<h1>Hinweis</h1>
<p>
Die Internetseite der <strong>Vital‑Apotheke Schleiden</strong> finden Sie jetzt unter
<span class="url">www.vitalapothekeschleiden.de</span>.
</p>
<p>
<a class="button" href="https://www.vitalapothekeschleiden.de" target="_self" rel="noopener">zur Website</a>
</p>
<footer>
© <span id="year"></span> Vital‑Apotheke Schleiden
</footer>
</main>
<script>
// Jahr automatisch setzen
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>