/* AutoVibe Initial CSS for project 1757443597905 - Iteration 1 */

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

:root {
    --color-primary-text: #333;
    --color-secondary-text: #555;
    --color-background: #f4f4f4;
    --color-accent: #007bff;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family-sans-serif);
    line-height: 1.6;
    color: var(--color-primary-text);
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary-text);
    text-align: center;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-secondary-text);
    text-align: center;
}

@media (min-width: 768px) {
    body {
        padding: 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    p {
        font-size: 1.15rem;
    }

    body > * {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}