:root {
    --bg-color: #F4F3EE; /* Off-white Bauhaus base */
    --bauhaus-red: #E03C31;
}

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

body {
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Subtle Bauhaus touch: thick bottom border */
    border-bottom: 12px solid var(--bauhaus-red);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
}

.logo {
    max-width: 450px;
    width: 90%;
    height: auto;
    
    /* Smooth entrance animation */
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
