:root{
    --schrift: #777777;
    --hintergrund: #fff;
    --akzent1: #60A20A;
    --akzent2: #0c5d31;
}

body {
  font-family: arial,sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--schrift);
  margin: 0;
  padding: 0;
  background: var(--hintergrund);
  max-width: 1200px;
  margin: 20px 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);
  margin-top:60px;
}

h2{
  font-size: 26px;
  margin-bottom: 10px;
  line-height: normal;
  color: var(--akzent2)
}

img.logo{
  max-width: 450px;
  height: auto;
  margin-top: 40px;
}

.inhalt{
  text-align: left;
  max-width: 800px;
}

.box{
  border: 2px solid var(--akzent1);
  padding: 20px;
  margin: 10px 0;
}


.kontakt {
  border-top:1px dotted grey;
  padding: 30px 0 30px 0;
  border-bottom:1px dotted grey;
  float: left;
  margin:10px 0 0 0;
  width: 100%;
}

.kontakt + .kontakt {
  margin-top: 0;
  border-top: none;
}

.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;
}

.button {
  border: 1px solid var(--akzent1);
  border-radius: 20px;
  background-color: var(--akzent1);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.button:hover {
  border: 1px solid var(--akzent1);
  border-radius: 20px;
  background-color: #fff;
  color:  var(--akzent1);
  text-decoration: none;
  padding: 10px 20px;
}

.quicklinks{
  /* text-align: center; */
  clear: both;
}


.quicklinks ul{
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
}

.quicklinks ul li{
  display: inline;
  margin: 0 10px 0 0;
}