.gallery {
    display: flex;
    flex-wrap: wrap;
}

.image {
    margin: 10px;
    cursor: pointer;
}

.image img {
    width: 100%;
    height: auto;
}
.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
  }
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 700px;
    max-height: 700px;
    transform: translate(-50%, -50%);
    width: calc(100% - 60px); /* 100% - (2 * bordure) */
    height: calc(100% - 60px); /* 100% - (2 * bordure) */
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 999; 
}

.popup img {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

body {
      font-family: 'Roboto', sans-serif;
}
.navbar {
    background-color: transparent;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 899;
    text-align: left;
    padding: 20px;
}

.navbar h1 {
    font-family: 'Rambla', sans-serif;
    margin: 0;
    font-size: 3.125rem;
    color: #000;
}

.navbar h2 {
    margin-top: -5px;
    font-size: 17px;
    color: #000;
    font-weight: normal;
}

.navbar a {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    padding: 15px 20px 0 0;
    margin-right: 10px;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
}

.nav-links a {
    margin-left: 20px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
}
.content {
    margin-top: 80px;
    padding: 20px;
}

.gallbody {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}
.galleryinter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 800px;
    justify-content: center;
    align-items: center;
}
.galleryinter img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 5px;
}

@media (min-width: 769px) {
    .galleryinter img {
        width: calc(33.333% - 10px); /* 3 images par ligne avec espace */
    }
}
@media (max-width: 768px) {
    .galleryinter img {
        width: calc(50% - 10px); /* 2 images par ligne sur tablette */
    }
}

@media (max-width: 480px) {
    .galleryinter img {
        width: 100%; /* 1 image par ligne sur mobile */
    }
}
.copyright {
    color: #000;
      font-size: 16px;
      margin: 0 10px;
      margin-top: 15px;
      margin-bottom: 30px;
      text-decoration: none;
  }
  footer.footer {
    background: #ffffff;
}
