@charset "UTF-8";
/* CSS Document */

body {
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin: 0;
    line-height: 1.9; /* größerer Zeilenabstand */
}

.question-box {
    padding: 20px; /* mehr Innenabstand */
    margin-bottom: 24px; /* mehr Abstand zwischen den Boxen */
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
}

/* Abstand zwischen Radio-Optionen vergrößern */
.question-box div {
    margin-top: 8px;
    margin-bottom: 8px;
}
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}
main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background: white;
}
form {
  display: flex;
  flex-direction: column;
}
label, input, select, button, fieldset {
  margin-bottom: 15px;
}
fieldset {
  border: 1px solid #ccc;
  padding: 10px;
}
button {
  padding: 10px;
  background: #0073e6;
  color: white;
  border: none;
  cursor: pointer;
}
.hero {
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 36px;
   