:root {
    color-scheme: light;

    /* Primary Colors */
    --color-primary: #CA2B50;
    --color-secondary: #EF8354;
    --color-accent: #0099CC;
    --color-accent-2: #21C063;

    /* Backgrounds */
    --bg-light: #F5F5F5;
    --color-bg-gradient-start: #f5f5f5;
    --color-bg-gradient-end: #b2bec3;

    /* Text Colors */
    --text-primary: #2d3436;
    --text-secondary: #636e72;

    /* Neutral grays */
    --gray-light: #dfe6e9;
    --gray-mid: #b2bec3;
    --gray-dark: #636e72;
}

@media (prefers-color-scheme: dark) {
    :root {
        /* Override dark mode */
        color-scheme: light;

        /* Primary Colors */
        --color-primary: #CA2B50;
        --color-secondary: #EF8354;
        --color-accent: #0099CC;
        --color-accent-2: #21C063;

        /* Backgrounds */
        --bg-light: #F5F5F5;
        --color-bg-gradient-start: #f5f5f5;
        --color-bg-gradient-end: #b2bec3;

        /* Text Colors */
        --text-primary: #2d3436;
        --text-secondary: #636e72;

        /* Neutral grays */
        --gray-light: #dfe6e9;
        --gray-mid: #b2bec3;
        --gray-dark: #636e72;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Zain', sans-serif;
}

html,
body {
    min-height: 100%;
}

body {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-gradient-start), var(--color-bg-gradient-end));
    padding: 1rem;
    color: var(--color-text-primary);
    min-height: fit-content;
    align-items: center;
}