/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body, html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* White background */
}

/* Centered Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

/* Responsive Logo Styling */
.logo {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

/* Scaling for Different Screen Sizes */
@media (min-width: 768px) {
    .logo {
        max-width: 60vw;
        max-height: 60vh;
    }
}

@media (min-width: 1024px) {
    .logo {
        max-width: 40vw;
        max-height: 40vh;
    }
}

@media (min-width: 1366px) {
    .logo {
        max-width: 30vw;
        max-height: 30vh;
    }
}

@media (min-width: 1920px) {
    .logo {
        max-width: 20vw;
        max-height: 20vh;
    }
}
