body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #24282B;
    font-family: Arial, sans-serif;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 40%;
    height: auto;
    opacity: 0;
    transform: scale(1);
    animation: fadeIn 1.5s ease-out forwards;
    cursor: pointer;
    will-change: transform, opacity;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

footer {
    padding: 20px;
    text-align: center;
}

.impressum-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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