/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up full viewport white background */
html, body {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow: hidden;
}

/* Center the logo container */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

/* Style the logo image */
.centered-logo {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .centered-logo {
        max-width: 95%;
        max-height: 95vh;
    }
}

