:root{
    --schrift: #515151;
    --hintergrund: #FFFFFF;
    --akzent1: #0f4290;
    --akzent2: #0f4290;
}

body {
  font-family: arial,sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--schrift);
  margin: 0;
  padding: 0 20px;
  background: var(--hintergrund);
  max-width: 1200px;
  margin: 100px auto;
  line-height: 1.4em;
  /* text-align: center; */
}

strong {
  font-weight: 700;
}

p {
  margin: 0 0 10px 0;
}

a {
  color: var(--akzent1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: ease 0.3s;
}

a:hover{
  text-decoration-thickness: 2px;
}

h1{
  font-size: 40px;
  margin-bottom: 30px;
  line-height: normal;
  color: var(--akzent2)
}

h2{
  font-size: 26px;
  margin-bottom: 10px;
  line-height: normal;
  color: var(--akzent2)
}

img.logo{
  width: 400px;
  height: auto;
  max-width: 100%;
}

.logo-fehlt{
  font-size: 60px;
  color: var(--akzent1);
}

.inhalt{
  text-align: left;
  max-width: 800px;
}

.inhalt .zweispaltig{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.box{
  border: 2px solid var(--akzent1);
  padding: 20px;
  margin: 10px 0;
}

.footer{
  /* text-align: center; */
  font-size: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--akzent1);
  /* background: var(--akzent1); */
  /* color: var(--hintergrunds); */
  margin-top: 50px;
}

.quicklinks{
  /* text-align: center; */
}

.quicklinks ul{
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
}

.quicklinks ul li{
  display: inline;
  margin: 0 10px 0 0;
}