/* Allgemeine Stile */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Header */
.header {
  background-color: #ffffff;
  text-align: center;
  padding: 20px;
}

.header h1 {
  margin: 0;
  font-size: 48px;
  font-weight: bold;
  color: #000000;
}

/* Buttons */
.buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.button {
  display: block;
  width: 200px;
  height: 80px;
  margin: 0 20px;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background-color: #000000;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #555555;
}

/* Impressum */
.impressum {
  background-color: #cccccc;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

.impressum h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.impressum p {
  margin: 10px 0;
  font-size: 16px;
  color: #000000;
}
