* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header-image {
    background: url('img_daten/sorobantalente_header.png') no-repeat center center/cover;
    height: 150px;
    width: 712px;
    margin-left: auto;
    margin-right: auto;
}

nav {
   
    padding: 1rem;
    text-align: center;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
    background-image: url(img_daten/menue_backround.png);
    background-size: 100% 100%;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: normal;
}

nav a:hover {
  text-decoration: underline;
}
h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}
h2 {
    font-size: 1em;
    margin-bottom: 10px;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

.container_kurse {
        display: flex;              /* nebeneinander anordnen */
        gap: 20px;                  /* Abstand zwischen den Boxen */
        max-width: 800px;
        margin: 30px auto;
    }

    .infobox {
        flex: 1;                    /* beide teilen sich den Platz */
        border: 2px solid #333;     /* Rahmen */
        border-radius: 10px;        /* abgerundete Ecken */
        padding: 20px;
        background-color: #f8f8f8;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
main section p {
    font-size: 0.9em;
    margin-bottom: 20px;
    max-width: 600px;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


footer {
  background-color: #222;
  color: white;
  padding: 1.5rem;
  text-align: center;
}
.container_kurse {
}

footer a {
  color: #ddd;
  margin: 0 10px;
  text-decoration: none;
}
