/* Reset & Basislayout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hauptinhalt */
.container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Kreis-Logo */
.logo-circle {
  background-color: #185c5f;
  width: clamp(150px, 40vw, 300px);
  height: clamp(150px, 40vw, 300px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo-text {
  color: white;
  font-size: clamp(24px, 6vw, 48px);
  font-weight: 700;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 16px;
  color: #185c5f;
}
