body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.story-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.story-item {
    margin-bottom: 40px; /* Space between story items */
}

.story-item h2 {
    color: #007bff; /* A nice blue for the titles */
    margin-bottom: 10px;
}

.story-item img {
    max-width: 100%; /* Ensure images are not larger than their container */
    height: auto;
    border-radius: 10px; /* Slightly rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* A subtle shadow for depth */
}

.story-item p {
    background-color: #f9f9f9; /* A very light background to offset the description */
    padding: 15px;
    border-radius: 5px; /* Slightly rounded corners for the description box */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* A lighter shadow for the text box */
    border-left: 4px solid #007bff; /* A blue accent line on the left */
    margin-top: 10px;
}

/* Responsive Image Gallery */
@media (max-width: 768px) {
    .story-container {
        padding: 10px;
    }

    .story-item h2 {
        font-size: 18px; /* Slightly smaller titles on smaller screens */
    }

    .story-item p {
        font-size: 14px; /* Slightly smaller text on smaller screens */
    }
}
