initial commit

This commit is contained in:
2026-04-27 19:17:22 +02:00
commit b22bfcf15b
65 changed files with 2758 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
.impressum {
position: relative;
justify-content: space-around;
align-items: center;
width: 95%;
max-width: 980px;
height: auto;
border-radius: 25px;
top: 35px;
left: 50%;
margin-bottom: 20px;
transform: translate(-50%);
background-color: rgba(0, 0, 0, 0.7); /* Dunklerer Hintergrund für besseren Kontrast */
padding: 20px;
color: white; /* Schriftfarbe weiß */
line-height: 1.6; /* Zeilenabstand für bessere Lesbarkeit */
font-size: 16px; /* Schriftgröße für bessere Lesbarkeit */
font-family: 'Nanum Gothic Coding';
}
/* Für Links im Impressum */
.impressum a {
color: #00aaff; /* Farbige Links, die sich abheben */
text-decoration: none;
}
.impressum a:hover {
text-decoration: underline;
}
/* Für Überschriften im Impressum */
.impressum h1, .impressum strong {
color: #ffffff; /* Weiße Schrift für Überschriften und wichtige Punkte */
font-weight: bold;
}