html {
  height: 100%;
  background: black;
}

body {
  height: inherit;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px; /* Espacement entre les images et l'iframe */
}

img {
  display: block;
  width: 100%;
  max-width: 200px; /* Optionnel : limiter la largeur des images */
}

.iframe-container {
  width: 100%;
}

iframe {
  width: 100%;
  height: 500px; /* Hauteur de l'iframe, à ajuster selon vos besoins */
}

.add-button {
  margin-top: 20px;
}
