/* Global styles */
body {
    margin: 0;
    padding: 1rem;
    font-family: sans-serif;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

/* Container that centers content and limits width on desktop */
.container {
    max-width: 800px;
    margin: auto;
    padding: 1rem;
}

/* Make images and videos scale properly */
img, video {
    max-width: 100%;
    height: auto;
}

/* Headings and text should scale reasonably */
h1, h2, h3, h4 {
    margin-top: 1.5rem;
    line-height: 1.2;
}

/* Responsive layout tweaks with media queries */
@media (min-width: 768px) {
    body {
        padding: 2rem;
    }
}

