
@charset "UTF-8";

.grid-container-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;      /* Erlaubt den Umbruch in die nächste Zeile */
  align-items: flex-end; /* Richtet alle Elemente unten bündig aus */
  gap: 15px;             /* Abstand zwischen den Blöcken */
  width: 100%;
  padding: 10px;
  box-sizing: border-box;

}

.box-flex1 {
  background-color: #1D7989;
  color: white;
  padding: 15px;
  border-radius: 6px;
  box-sizing: border-box;

  align-items: center; 
  text-align: center;  
  font-size: 12px;

  /* GEMEINSAMER RAHMEN FÜR ALLE BLÖCKE */
  min-width: 120px;      /* Kein Block wird schmaler als 120px */
  min-height: 200px;      /* Kein Block wird flacher als 80px */
  max-width: 350px;      /* Kein Block wird breiter als 350px */
  max-height: 500px;     /* Kein Block wird höher als 250px */
  /*   overflow: auto; */
}

.box-flex2 {
  background-color: #1D7989;
  color: white;
  padding: 15px;
  border-radius: 6px;
  box-sizing: border-box;

  align-items: center; 
  text-align: center;  
  font-size: 12px;

  /* GEMEINSAMER RAHMEN FÜR ALLE BLÖCKE */
  min-width: 120px;      /* Kein Block wird schmaler als 120px */
  min-height: 38px;      /* Kein Block wird flacher als 80px */
  max-width: 550px;      /* Kein Block wird breiter als 350px */
  max-height: 800px;     /* Kein Block wird höher als 250px */
  /*   overflow: auto; */
}

.box-flex4 {
  background-color: #1D7989;
  color: white;
  padding: 15px;
  border-radius: 6px;
  box-sizing: border-box;

  align-items: center; 
  text-align: center;  


  /* GEMEINSAMER RAHMEN FÜR ALLE BLÖCKE */
  min-width: 120px;      /* Kein Block wird schmaler als 120px */
  min-height: 250px;      /* Kein Block wird flacher als 80px */
  max-width: 750px;      /* Kein Block wird breiter als 350px */
  max-height: 800px;     /* Kein Block wird höher als 250px */
  /*   overflow: auto; */
}

.box-flex5 {
  background-color: #1D7989;
  color: white;
  padding: 15px;
  border-radius: 6px;
  box-sizing: border-box;

  align-items: center; 
  text-align: center;  
  
  /* GEMEINSAMER RAHMEN FÜR ALLE BLÖCKE */
  min-width: 120px;      /* Kein Block wird schmaler als 120px */
  min-height: 250px;      /* Kein Block wird flacher als 80px */
  max-width: 1050px;      /* Kein Block wird breiter als 350px */
  max-height: 1800px;     /* Kein Block wird höher als 250px */
  /*   overflow: auto; */
}


