.img-sizing {
  max-width: 40%;
  max-height: 40%;
}

.circular {
  width: 200px;       /* Circle diameter */
  height: 200px;      /* Must match width */
  border-radius: 50%;
  overflow: hidden;   /* Enables circular crop */
    object-fit: cover;

}

.circular img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Fills circle without distortion */
  object-position: center; /* <-- Forces crop from the center */
  align-items: center;
}

body {
  background-color: #E9E841;
  margin: 0;
  font-family: sans-serif;

  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertikal */
  min-height: 100vh;       /* damit der Body volle Höhe hat */
}

.card {
  background-color: #E0218A;
  width: 350px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);

  display: flex;
  flex-direction: column;
  align-items: center;   /* <-- Zentriert ALLES horizontal */
  text-align: center;
  color:white;
}

.button-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* Grund-Style für alle Buttons */
button {
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;          /* pill-förmig */
  border: none;
  background-color: #ffffff;     /* immer sichtbar: weißer Button */
  color: #E0218A;                /* Text in Kartenfarbe */
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Hover-Effekt */
button:hover {
  background-color: #ffe6f3;     /* leicht rosa */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

/* Link nicht blau machen */
.button-row a {
  text-decoration: none;
  color: inherit;
}

h2 {
    margin-top: 20px;
    padding: 10px;
  margin-bottom: 0.01rem;
}

a {
  color: white;
  text-align: left;
}

li {
  align-items: flex-end;
  text-align: left;
}
