body{
    margin:0;
    padding:0;
    font-family: sans-serif;
    height:100%;
}
div.wrapper{
display:flex;
justify-content:space-between;
flex-direction:column; }
header{
    background-image: url("Hintergrund.jpg");
    background-position: top center;
    margin:0;
    padding:0;
    height:150px;
}
header h1{
    margin:0;
    padding:50px;
    text-align: center;
    font-size:50px;
    text-shadow: 2px 2px white;
}
nav{
    background-color:green;
    color:white;
    height:50px;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
nav .image img{
    height:300px;
    width:300px;
    border-radius: 50%;
    border:20px solid green;
    position:absolute;
    top:20px;
}

ul {
    list-style-type: none;
    margin: 0;
    margin-right:20px;
    padding: 0;
    overflow: hidden;
    background-color: green;
  }
  
  li {
    float: left;
  }
  
  li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover, .dropdown:hover .dropbtn {
    background-color: darkgreen;
  }
  
  li {
    display: block;
  }
  .main{
    padding-top:20px;
    text-align:center;
	  padding-right:100px;
    padding-left:350px;
    
   }
  .beitrag p{
    text-align: justify;
    margin-right:15px;
   }
  div.dropdown-content {
    display: none;
    position: absolute;
    background-color: green;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;  }

  li:hover .dropdown-content{
    display:block;
  }
  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {background-color: darkgreen;}

section{
height:100%;
margin-bottom:10px;

}
.side-nav{
    margin-top:180px;
    margin-left:10px;
    margin-right:10px;
    margin-bottom:10px;
    padding:10px;
    background-color:lightgreen;
    width:300px;
	height:100%;
    border-radius:20px;
    float:left;

}
.news ul{
background-color:lightgreen;}
footer{
        display:flex;
    gap:10px;
    justify-content: center;
    border-top:2px solid black;
    margin-top:5px;
    margin-left:100px;
    margin-right:100px;
   height:10px;
}
footer a{
    text-decoration:none;
    font-size: 15px;
    color:black;
}