* {
  font-family: sans-serif;
}
h1 {
  font-weight: 400;
  text-align: center;
}

h1 {
  font-family: sans-serif;
  color: #555;
}

.photo-container {
  font-size: 1.5em;
  background-color: rgba(44, 62, 82, 0.7);
  color: white;
  padding: 20px;
  text-align: center;
  grid-area: photo;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-container {
  margin: 10px;
  display: grid;
  grid-template-areas: "photo info";
  grid-template-columns: 150px 1fr;
  width: 550px;
  background-color: rgb(255 255 255 / 10%);
  border-radius: 3px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  line-height: 1.75em;
}
.info-container {
  padding: 20px;
  grid-area: info;
}
.event-name {
  font-weight: bold;
  padding-bottom: 5px;
}
.event-location {
  font-weight: 300;
}
.day {
  font-weight: 300;
}
.month {
  font-weight: 600;
}

@media (max-width: 600px) {
  .card-container {
    width: 90%;
  }
}

.figures-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 20px; Place les événements en colonne */
}

/* Si vous souhaitez également ajouter un espacement vertical entre les figures */
.figures-wrapper figure {
  margin-bottom: 20px; /* Espacement vertical entre les figures */
  transition: transform 0.3s; /* Ajout de la transition */
}
.figures-wrapper figure:hover {
  transform: scale(1.05); /* Grossissement au survol */
}
