body {
    background-image: url("background.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0; /* Optional: removes default margin */
    padding: 0; /* Optional: removes default padding */
    min-height: 100vh; /* Ensure body covers at least the full viewport height */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.glass-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    backdrop-filter: blur(10px); /* Glass effect */
    background-color: rgba(
        255,
        255,
        255,
        0.15
    ); /* Semi-transparent background */
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Optional light border */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
    z-index: 1000; /* Ensure it's above other content */
}

.glass-footer a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.glass-footer a:hover {
    color: #ddd; /* Slightly lighter color on hover */
}

/* Styles for the impressum page */
body {
    padding-bottom: 80px; /* Increased padding to prevent footer overlap */
    /* The font-family is set on the main body rule above */
}

.impressum-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    backdrop-filter: blur(10px); /* Glass effect */
    background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Optional: add border for a more defined glass look */
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.impressum-container h1,
.impressum-container h2 {
    color: white; /* White color for contrast on glass background */
}
.impressum-container p {
    line-height: 1.6;
    color: white; /* White color for contrast on glass background */
}
