/* DESKTOP / DEFAULT */
body {
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.hero-image {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

/* MOBILE ONLY */
@media screen and (max-width: 768px) {
    body {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .hero-image {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: none;
        margin: 0;
        display: block;
    }
}
