html {
  font-size: 100%; /* 1rem = 16px standardmäßig */
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fffaf3;
  color: #4b3621;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  background-color: #7b5b46;
  color: white;
  padding: 2rem 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

/* Formular */
.bowl-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 56rem; /* ca. 900px */
  margin: 2rem auto;
  background-color: #f2e8dc;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1); /* statt 2px 10px */
}

/* Fieldsets */
fieldset {
  border: none;
  background-color: white;
  padding: 1rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

legend {
  font-weight: 600;
  color: #7b5b46;
  margin-bottom: 0.5rem;
}

/* Inputs & Buttons */
input, select, button {
  font: inherit;
  padding: 0.6rem;
  border: 0.0625rem solid #ccc; /* ~1px */
  border-radius: 0.4rem;
}

button {
  grid-column: span 2;
  background-color: #7b5b46;
  color: white;
  border: none;
  cursor: pointer;
  padding: 1rem;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #4b3621;
}

/* Responsive Layout */
@media (max-width: 30rem) { /* ~480px */
  .bowl-form {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #4b3621;
}