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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
}

.container {
    width: 100vw;
    min-height: 100vh;
    display: block;
    margin: 0;
    padding: 0;
}

.welcome-image {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    animation: fadeIn 1s ease-in;
}

.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    html {
        margin: 0 !important;
        padding: 0 !important;
        height: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        margin: 0 !important;
        padding: 0 !important;
        padding-top: env(safe-area-inset-top, 0) !important;
        width: 100%;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }

    .container {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: calc(-1 * env(safe-area-inset-top, 0)) !important;
        position: relative;
        top: 0;
        left: 0;
        width: 100vw;
        line-height: 0;
        font-size: 0;
    }

    .desktop-image {
        display: none !important;
    }

    .mobile-image {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0;
        position: relative;
        top: 0;
        left: 0;
        border: none;
        outline: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

