/* ==========================================================================
   1. GLOBAL SYSTEM SETTINGS
   ========================================================================== */
:root {
    color-scheme: light dark;
}

html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   2. BASE RESET & TYPOGRAPHY
   ========================================================================== */
body {
    font-family: system-ui;
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   3. LAYOUT & CONTAINERS
   ========================================================================== */
.container,
.app-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   4. APP IMAGES & BANNERS
   ========================================================================== */
.image-banner {
    max-width: 90%;
    height: auto;
}

@media (min-width: 768px) {
    .image-banner {
        width: 60%;
    }
}
