.pictures {
  margin-top: 30px;
  width: 90%;
  height: fit-content;
  background-color: white;
  border-radius: 10px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.pictures-information {
  margin-top: 20px;
  margin-left: 30px;
  margin-right: 30px;
  height: 30px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.pictures-information .title, .date {
  font-size: 22px;
  font-weight: 530;
  color: rgb(2,28,30);
}

.pictures .pictures-container {
  margin: 30px;
  margin-bottom: 50px;
  height: fit-content;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.picture-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pictures-container .picture-grid img {
  height: 250px;
  object-fit: cover;
}