@charset "utf-8";
/* CSS Document */img {
    max-width: 100%; /* Ensures the image doesn't exceed its container's width */
    height: auto;    /* Automatically adjusts height to maintain aspect ratio */
    display: block;  /* Helps with centering and consistent behavior */
}
/* Basic reset for consistency */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px; /* Prevents content from becoming too wide on very large screens */
    margin: auto;
    padding: 20px;
}

header, footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 20px;
}

/* Flexible layout using Flexbox */
.content-row {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap onto a new line on smaller screens */
    gap: 20px; /* Provides consistent spacing between columns */
}

.column {
    flex: 1; /* Each column takes up equal available space */
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    min-width: 250px; /* Ensures columns don't get unreadably small */
}

/* Responsive images: they scale down if needed, but not up past their original size */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
}

/* Media Query for small screens (e.g., mobile phones) */
@media (max-width: 600px) {
    .content-row {
        flex-direction: column; /* Stacks columns vertically on small screens */
    }
    .column {
        min-width: 100%; /* Columns take full width */
    }
    h1 {
        font-size: 8vw; /* Responsive text size using viewport width units */
    }
}

