/* Base styles for all screen sizes */
body {
    font-family: sans-serif;
}

h1, h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}
figcaption {
    text-align: center;
}
.content {
    width: 50%;
    padding: 20px;
    border-radius: 10px;
    text-align: justify;
    margin: 20px auto; /* Center horizontally */
}

.content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 550px;
    overflow-y: auto;
}

/* Media query for small screens (e.g., cellphones) */
@media screen and (max-width: 768px) {
    h1, h2 {
        font-size: 20px; /* Smaller font size */
        margin: 10px 0; /* Smaller top and bottom margins */
    }

    .content {
        width: 90%; /* Wider content on small screens */
        padding: 10px; /* Smaller padding */
        margin: 10px auto; /* Center horizontally */
    }
}

