#gallery {
    column-count: 3;
    column-gap: 10px;
    margin: 20px;
}
#gallery{
    animation: fadeIn 5s;
  text-align:center;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    text-align:center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

#pages{
    padding-top:20px;
    width:100%;
    text-align:center;
}

.linkPage, .currentPage{
    text-decoration: none;
    font-size: 20pt;
}

#nbcolumns{
    display:none;
}

@media screen and (max-width: 736px) {
    #gallery{
        margin:0px;
    }
}