body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #444;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

h1 {
  color: #31b404;
  margin-bottom: 50px;
}

p {
  color: #ccc;
  margin-bottom: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* genau 2 Spalten */
  gap: 20px;
  width: 90%;
  max-width: 600px;
  padding: 20px;
  box-sizing: border-box;
}

.tile {
  background-color: #333;
  color: #eee;
  aspect-ratio: 1 / 1; /* Quadratisch */
  border-radius: 2px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #31b404;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
}

.tile:hover {
  transform: scale(1.05);
  border-color: #31b404;
  background-color: #2a2a2a;
}

.footer {
  margin-top: 40px;
  padding: 10px;
  text-align: center;
}

.footer a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #31b404;
  text-decoration: underline;
}


.impressum-box {
  background-color: #333;
  color: #eee;
  padding: 20px;
  border-radius: 3px;
  max-width: 600px;
  width: 90%;
  box-sizing: border-box;
  border: 1px solid #31b404;
  margin-bottom: 40px;
  text-align: left;
}