:root {
    --color1: #014F77;
    --color2: #012955;
  }  
  * {
    box-sizing: border-box;
  }
  html {
    font-family: arial, sans-serif;
    font-size: 1rem;
  }
  body {
    background-color: var(--color1);
    color: white;
    margin: 0 auto;
  }
  ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  a {
    color: white;
    text-decoration: none;
    font-family: arial, sans-serif;
    font-size: 1rem;
  }
  h1, h2, h3 {
    text-transform: uppercase;
  }
  h1 {
    padding: 60px 0 20px 0;
    font-size: 3rem;
    font-weight: 700;
    max-width: 1080px;
    margin: auto;
  }
  .inhalt {
    max-width: 1080px;
    margin: 0 auto;
  }
  header {
    display: flex;
    width: 100%;
  }
  #header-img {
    object-fit: cover;
    width: 50px;
    display: flex;
    justify-content: flex-start;
  }
  #nav-bar {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0;
    z-index: 1;
    background-color: var(--color2);
    padding: 6px 20px;
    width: 100%;
  }
  #video {
    width:100%;
    max-width: 750px;
    object-fit: cover;
    height: 400px;
  }
  section:not(:first-of-type) {
    border-top: 2px solid white;
  }
  section:not(:first-of-type) {
    padding: 20px;
  }
  input, label, textarea {
    font-family: arial, sans-serif;
    font-size: 1.2rem;
  }
  input:not(:last-of-type), textarea {
    padding: 8px 10px;
    width: 100%;
  }
  input {
    margin-bottom: 10px;
  }
  textarea {
    height: 200px;
  }
  input[type="submit"]{
    padding: 8px 10px;
    font-weight: 700;
    border: none;
    background-color: white;
  }
  .grid {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
  }
  .grid img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .grid img:hover {
    object-position: 1em 1em;
  }
  footer #copyright {
    background-color: var(--color2);
    text-align: center;
    font-size: 0.8rem;
    padding: 20px;
    bottom: 0;
    margin: 0;
  }