
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background-color: #f4f4f4;
      color: #333;
    }
    header {
      background-color: #b30000;
      color: white;
      padding: 20px 0;
      text-align: center;
    }
    nav {
      background-color: #8b0000;
      display: flex;
      justify-content: center;
      padding: 10px 0;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
    }
    nav a:hover {
      text-decoration: underline;
    }
    .hero {
      background: url('https://www.idowa.de/storage/image/5/7/2/3/303275_copy-of-feuerwehrmannschaft-2019-19_fancybox_1DgK6a_P2vf6X.jpg') center/cover no-repeat;
      height: 300px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-shadow: 2px 2px 5px black;
      font-size: 2em;
    }
    main {
      padding: 20px;
      max-width: 1000px;
      margin: auto;
    }
    section {
      margin-bottom: 40px;
    }
    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 15px 0;
    }