body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.logo {
    max-width: 400px;
    width: 100%;
}

.buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #0056b3;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px 0;
    text-align: center;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

impressum {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
    font-family: Impact, sans-serif;
    scroll-behavior: auto;
}

.content {
    max-width: 900px; /* Set the maximum width */
    margin: 0 auto; /* Center the element horizontally */
    text-align: center; /* Center the text inside the element */
    padding: 20px; /* Optional padding for better readability */
    font-family: Arial, sans-serif; /* Optional: Set a font for styling */   
    height: 100vh;
}


/* Responsive adjustments */
@media (max-width: 600px) {
    .logo {
        max-width: 150px;
    }
    footer {
        font-size: 12px;
        padding: 8px 0;
    }
}