36 lines
964 B
CSS
Executable File
36 lines
964 B
CSS
Executable File
.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;
|
|
}
|