body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.content {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

:root {
    --logo-base-size: 500px; /* Logo size on desktop */
    --character-img-ratio: 0.7; /* Character image is half the size of the logo */
}

#logo-img {
    width: var(--logo-base-size);
    height: auto;
    max-width: 80%;
}

#character-img {
    width: calc(var(--logo-base-size) * var(--character-img-ratio));
    height: auto;
    max-width: 50%;
}

@media (max-width: 768px) {
    :root {
        --logo-base-size: 80vw; /* Adjust the logo size for smaller screens */
    }
    #character-img, #logo-img {
        max-width: 100%;
    }
}