body {
  background-color: #698caf;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.title-bar {
  background-color: #e60005;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center; /* Zentriert die Elemente vertikal */
  height: 10vh;
}
.title-bar h1 {
  font-size: 1.5em; /* Verkleinert die Schriftgröße */
  font-family: 'Roboto', sans-serif; /* Ändert die Schriftart */
}
.title-bar .material-icons {
  font-size: 1.5em; /* Passt die Schriftgröße des Menü-Icons an */
}
.title-link {
  color: white; /* Setzt die Linkfarbe auf Weiß */
  text-decoration: none; /* Entfernt das Unterstreichen */
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}
.tile {
  background-color: #002d55;
  color: white; /* geänderte Schriftfarbe */
  margin: 10px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  overflow: hidden;
}
.tile img {
  width: 100%;
}
.tile h2 {
  padding: 10px;
  font-size: 0.8em; /* Verkleinert die Schriftgröße */
  overflow: auto; /* Stellt sicher, dass der Text immer in die Kachel passt */
}
.menu {
  background-color: #ebf5ff; /* Geänderte Hintergrundfarbe */
  color: black;
  position: fixed;
  top: 10vh; /* Geändert von '0' zu '10vh' */
  right: -80vw; 
  width: 80vw; 
  height: 90vh; /* Geändert von '100vh' zu '90vh' */
  transition: right 0.3s ease; 
}
.menu a {
  display: block; /* macht den Link zu einem Block-Element */
  text-decoration: none; /* entfernt die Unterstreichung */
  color: black; /* geänderte Schriftfarbe */
  padding: 10px; /* fügt Polsterung hinzu */
  border-bottom: 1px solid #002d55; /* geänderte Farbe der Trennlinie */
}
.menu a:last-child {
 border-bottom: none; /* entfernt die Trennlinie vom letzten Link */
}
.menu.open {
 right: 0; 
}

.container2 {
  padding: 10px;
}
