* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: 'Roboto Mono', monospace;
    color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    overflow: hidden;
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg'); /* Dein Hintergrundbild */
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.3s ease-out;
}

/* Overlay für Abdunkelung */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Abdunklung mit 70% Deckkraft */
    z-index: -1;
}

.content {
    text-align: center;
    z-index: 1; /* Damit der Text über dem Overlay bleibt */
}

h1 {
    font-size: 5rem;
    letter-spacing: 2px;
    color: #eee;
    margin-bottom: 20px;
    /* Text soll nicht in Großbuchstaben erscheinen */
    text-transform: none; /* Entfernt Großschreibung */
}

p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    text-transform: none; /* Sicherstellen, dass keine Großbuchstaben verwendet werden */
}

.social-links .btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 30px;
    border: 2px solid #555;
    color: #ccc;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 0;
}

.social-links .btn:hover {
    background-color: #444;
    color: #fff;
}

/* Footer-Bereich mit Impressum-Link */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.impressum-link {
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.impressum-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Stil für den animierten Zurück-Link im Impressum */
.back-link {
    text-align: center;
    margin-top: 40px;
}

.arrow-link {
    font-size: 1.2rem;
    color: #888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.arrow-link span {
    margin-right: 10px;
}

.arrow-link svg {
    fill: #888;
    transition: transform 0.3s, fill 0.3s;
}

.arrow-link:hover {
    color: #fff;
}

.arrow-link:hover svg {
    transform: translateX(5px);
    fill: #fff;
}
