
html {
  scroll-behavior: smooth;
}

body {
	min-height: 100vh;
  background-color:  rgb(0, 18, 0);
}

@media only screen and (max-width: 1200px) {
  .waldbild {
    display: none;
  }
}

div.header{
  background-color: rgb(0,18,0);
}

div.middle{
  margin-top: 20px;
  background-color: white;
}

div.spalten{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}

div.waldbild{
  grid-column: 1 / 2;
  grid-row: 1;
  border-radius: 20px;
  margin-top: 35px;
  margin-bottom: 20px;
  background-image: url("pexels-mali-maeder-142497.jpg");
  background-size: cover;
}

div.imp{
  grid-column: 2 / 3;
  grid-row: 1;
  min-width: 1000px;
  border-radius: 20px;
  margin-top: 35px;
  margin-bottom: 20px;
  background-color: hsla(0, 0%, 89%, 0.5);
}

div.footer{
  background-color: rgb(222, 222, 222);
	min-height: 50px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer a{
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 500;
  margin: 10px 10px 10px 10px;
}

.header h1 {
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-stretch: ultra-condensed;
  display: inline;    /*kein Umbruch*/
}

.header h2 {
	color: rgb(255, 255, 255);
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-size: 1.5em;
  font-stretch: ultra-condensed;
  display: inline;  /*kein Umbruch*/
}

.imp h2 {
  margin-left: 30px;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-stretch: ultra-condensed;
}

.imp h3 {
  margin-left: 30px;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  font-stretch: ultra-condensed;
}

p.std{
  color: black;
  font-size: 1em;
  margin-left: 30px;
  font-family:Arial, Helvetica, sans-serif
}

p.einz {
  color: black;
  font-size: 1em;
  margin-left: 50px;
  font-family:Arial, Helvetica, sans-serif
}

hr {
  border: 0;
  height: 8px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(85, 74, 53), rgba(0, 0, 0, 0));
}


