body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #007BFF;
}

.impressum-link {
    display: block;
    margin-top: 20px;
    font-size: 0.8em; /* Smaller font size */
}

.container {
    position: relative; /* Relative positioning to hold the link at the bottom */
    padding-bottom: 40px; /* Padding at the bottom for spacing */
}

.impressum-link {
    position: absolute; /* Absolute positioning to fix it at the bottom */
    bottom: 10px; /* Distance from the bottom */
    left: 50%; /* Center align */
    transform: translateX(-50%); /* Adjust centering */
}
