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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background: white;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo {
    max-width: 300px;
    max-height: calc(100vh - 40px);
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    body {
        padding: 0;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
    }
    
    .logo {
        transform: scale(0.8);
        max-height: 100vh;
        max-height: 100dvh; /* Dynamic viewport height for mobile */
    }
}
