.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin-bottom: 50px;
}

.link {
    /* max-width: 200px; */
    /* max-height: 200px; */
    width: 300px;
    height: 300px;
}

.image, .video {
    /* margin-bottom: 50px; */
    width: 300px;
    height: 300px;
    -webkit-box-shadow: 5px 5px 16px 0 rgba(0, 0, 0, 0.53);
    box-shadow: 5px 5px 16px 0 rgba(0, 0, 0, 0.53);
    transition: transform 0.2s;
}

.image:hover, .video:hover {
    transform: scale(1.059);
}

.video {
    object-fit: cover;
}

@media (max-width: 560px) {
    .link {
        max-width: 95%;
    }
  }
