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

html,
body {
    height: 100%;
    background-color: white;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.infobox {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo {
    width: 100%;
    height: auto;
    max-width: 650px;
    display: block;
    margin: 0 auto 20px auto;
}

.slogan {
    text-align: center;
    font-size: clamp(1rem, 4vw, 1rem);
    font-weight: bold;
    color: #355B26;
    font-family: 'Yeseva One', serif;
}

/* Media queries for better mobile responsiveness */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .infobox {
        max-width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }
}