-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatenschutz.html
More file actions
133 lines (115 loc) · 3.4 KB
/
Copy pathdatenschutz.html
File metadata and controls
133 lines (115 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Datenschutz | Humangehalt</title>
<meta name="description" content="Datenschutzerklärung von Humangehalt für diese Website." />
<meta name="robots" content="noindex, follow" />
<link rel="canonical" href="https://humangehalt.md/datenschutz" />
<style>
:root {
color-scheme: light dark;
--bg: #0b0c10;
--fg: #e9eef5;
--muted: #a7b3c3;
--border: rgba(255, 255, 255, 0.12);
--maxw: 860px;
}
@media (prefers-color-scheme: light) {
:root {
--bg: #f6f7fb;
--fg: #0e1621;
--muted: #425466;
--border: rgba(0, 0, 0, 0.08);
}
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family:
ui-sans-serif,
system-ui,
-apple-system,
Segoe UI,
Roboto,
Arial,
"Noto Sans",
"Apple Color Emoji",
"Segoe UI Emoji";
color: var(--fg);
background: var(--bg);
}
.wrap {
max-width: var(--maxw);
margin: 0 auto;
padding: clamp(20px, 4vw, 36px);
}
h1 {
margin: 0 0 18px 0;
font-size: clamp(30px, 4vw, 42px);
letter-spacing: -0.02em;
}
h2 {
margin: 24px 0 8px 0;
font-size: 20px;
}
p,
li {
line-height: 1.6;
color: var(--muted);
}
.card {
border: 1px solid var(--border);
border-radius: 12px;
padding: 16px;
}
.nav {
margin-top: 26px;
}
.nav a {
color: inherit;
text-underline-offset: 2px;
}
</style>
</head>
<body>
<main class="wrap">
<h1>Datenschutzerklärung</h1>
<div class="card">
<h2>1. Verantwortlicher</h2>
<p>
Verantwortlich für die Datenverarbeitung auf dieser Website:<br />
Name: Bernhard Dorn<br />
E-Mail: info@humangehalt.org
</p>
<h2>2. Hosting und Protokolldaten</h2>
<p>
Diese Website wird über Azure Static Web Apps gehostet. Beim Aufruf der Website können
technisch notwendige Verbindungsdaten (z. B. IP-Adresse, Datum/Uhrzeit, angeforderte
Ressource) in Server-Logs verarbeitet werden.
</p>
<h2>3. Keine Tracking- oder Marketing-Tools</h2>
<p>
Derzeit werden auf dieser Website keine Analyse- oder Marketing-Tools eingesetzt. Sollte
sich das ändern, wird diese Datenschutzerklärung entsprechend aktualisiert.
</p>
<h2>4. Zwecke und Rechtsgrundlage</h2>
<p>
Die Verarbeitung erfolgt zur technischen Bereitstellung und Stabilität der Website
(berechtigtes Interesse gemäß Art. 6 Abs. 1 lit. f DSGVO).
</p>
<h2>5. Betroffenenrechte</h2>
<p>
Sie haben das Recht auf Auskunft, Berichtigung, Löschung, Einschränkung der Verarbeitung,
Datenübertragbarkeit sowie Widerspruch nach Maßgabe der gesetzlichen Vorgaben.
</p>
<h2>6. Kontakt</h2>
<p>Bei datenschutzrechtlichen Fragen: info@humangehalt.org</p>
</div>
<p class="nav"><a href="/">Zurück zur Startseite</a></p>
</main>
</body>
</html>