body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.gallery img:hover {
    transform: scale(1.05);
}
.text-container {
    margin-top: 20px;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    background-color: #f0f0f0; /* Light grey background */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
    text-align: center; /* Centers the text */
}

.text-container p {
    margin: 0 0 10px; /* Adds space between paragraphs if you add more */
    line-height: 1.6; /* Increases the line height for better readability */
}
