* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    width: 100%;
    padding: 20px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

.logo {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    width: auto;
    object-fit: contain;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ddd;
    background-color: white;
    color: #666;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        max-width: 90vw;
        max-height: 60vh;
    }
    
    .footer {
        padding: 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 95vw;
        max-height: 50vh;
    }
    
    .footer {
        padding: 10px;
        font-size: 11px;
    }
}
