body {
    font-family: TildaSans, sans-serif;
    font-weight: lighter;
}

.gallery {
    display: flex;
    margin: 15px auto;
    justify-content: space-between;
    max-width: 1100px;
}

.gallery img {
    max-width: 350px;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: cover;
    box-shadow: 3px 2px #000;
}

.keywords {
    visibility: hidden;
    font-size: 1px;
}

.title {
    font-size: 25px;
}

.mainImgContainer {
    margin: auto;
    text-align: center;
    max-width: 1100px;
}

.mainImg {
    height: 100%;
    max-width: 50%;
    object-fit: cover;
}

.infoGallery {
    text-align: center;
    max-width: 1100px;
    margin: 20px auto 20px;
    font-size: 20px;
}

@media (max-width: 958px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
        margin: 15px;
        gap: 15px;
    }
    .gallery img {
        margin: auto;
        width: 100%;
        max-width: 100%;
    }
    .mainImg {
        max-width: 100%;
    }
}

@media (max-width: 762px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: auto;
    }
    .gallery img {
        margin: auto;
        width: 100%;
        max-width: 100%;
    }
}
