body {
  background-color: rgba(23, 34, 51, 1);
  font-family: Arial, sans-serif;
  color: rgb(255, 255, 255);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100vh; /* wichtig */
}

h1 {
  display: block;
  font-size: 60px;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

/* 
a:link,
a:visited {
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover,
a:active {
  color: rgb(146, 146, 146);
} 
*/

.container {
  display: flex;
  max-width: 900px;
  margin: auto;
  padding-top: 5px;
}

.container-admin {
  display: flex;
  flex-direction: column; /* vertikale Anordnung */
  max-width: 900px;
  margin: auto;
  padding-top: 20px;

  border: 1px solid rgb(255, 255, 255); /* 2px schwarzer Rahmen */
  border-radius: 10px; /* abgerundete Ecken mit 20px */
  padding: 10px; /* innen etwas Abstand (optional, aber sinnvoll bei Rahmen) */
}

.tile {
  display: flex;
  width: 400px;
  height: 200px;
  margin: 10px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.tile:hover {
  transform: scale(1.1);
}

.tile-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.tile-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  border-radius: 20px;
  width: 480px; /* Breite des Titels anpassen */
  background-color: rgba(
    255,
    255,
    255,
    0.075
  ); /* Hintergrundfarbe für den Titel */
}

.tile-header {
  text-align: center;
  min-width: 900px;
  font-size: 60px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  border-radius: 20px;
  width: 100%; /* Breite des Titels anpassen */
  background-color: rgba(
    255,
    255,
    255,
    0.075
  ); /* Hintergrundfarbe für den Titel */
}

.button1 {
  display: inline-block;
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  padding: 2px 16px;
  height: 38px;
  min-width: 96px;
  min-height: 38px;
  border: none;
  color: #fff;
  background-color: rgb(62, 96, 121);
  transition: background-color 0.17s ease, color 0.17s ease;
}
.button1:hover {
  background-color: rgb(140, 71, 196);
}

.footer {
  width: 900px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  font-size: 12px;
  padding: 10px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
