.school-picture {
    text-align: center;
    margin: 40px auto;
    background-color: rgb(192, 192, 111);
    width: 50%;
    height: 50%;
    max-width: 50%;
    padding: 10px;
    border-radius: 10px;
}


.image-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
/* Gallery cards */

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

img {
    width: 50vw;
    /* 50% of the viewport width */
    height: auto;
    /* maintain aspect ratio */
    margin: 20px;
    /* add some margin around the image */
    display: block;
    /* prevent image from overflowing */
    max-width: 100%;
    /* ensure image doesn't exceed parent container */
}

body {
    font-family: "YourFont", "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
}