body {
	font-family: arial;
}
a {
	text-decoration:none;
	color:red;
}

.header {
	width:100%;
	padding-right: 1%;
}
.header img {
	width:100%;
    padding-left: 0%;
    padding-right: 0%;
}
.bck{
    padding-right:1%;
	padding-left:1%;
	padding-top:10%;
	font-size:80%;
	justify-content:left;
	padding-bottom:2%;
} 
.bck img{
	width:100%;
}
.bck h1{
	color:red;
	font-size:200%;
	text-align: center;
}
.bck h2{
	color:red;
	font-size:150%;
}
.bck h3{
	color:red;
	font-size:120%;
}
.bck p{
	font-size:100%;
	text-align: center;
}

.link {
	width:100%;
	padding-top:2%;
	padding-left:2%;	
	font-size:150%;
	
}
.link a {
	padding-left:1%;
	padding-right:1%;
}
.link a:hover{
	background-color:red;
	color: white;
}
.lft a{
	padding-left:5%;
	padding-bottom:4%;
	display: flex; 
    justify-content: left; 
    align-items: left;
}

.lft a img{
	width:40px;
}

.jugend{
	font-size:125%;
	text-align:left;
	padding-top:10%;
	padding-left:2%;
}
.jugend img{
	padding-right:1%;
	padding-left:1%;
	float:none;
	width:90%;
}
.jugend a{
	width:1%;
}
.aktiv{
	font-size:125%;
	text-align:left;
	padding-top:2%;
	padding-left:2%;
}
.aktiv img{
	padding-right:1%;
	padding-left:1%;
	padding-top:5%;
	float:none;
	width:50%;
}
.aktiv2{
	font-size:125%;
	text-align:left;
	padding-top:2%;
	padding-left:2%;
}
.aktiv2 img{
	padding-right:1%;
	padding-left:1%;
	padding-bottom:4%;
	float:none;
	width:50%;
}	
.verein{
	font-size:125%;
	text-align:left;
	padding-top:2%;
	padding-left:2%;
}
.beitritt{
	font-size:125%;
	text-align:left;
	padding-top:2%;
	padding-left:2%;
}
.footer{
	position: fixed;
   	left: 0;
   	bottom: 0;
   	width: 100%;
   	background-color: red;
   	color: white;
   	text-align: center;
}
.footer a{
	color:white;
}
.footer p{
		padding-left:5%;
}
nav{
width: 100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
z-index: 99;

background-color: rgb(252, 249, 249) ;
}
nav .logo{
flex: 1;
color: rgb(2, 37, 18);
text-shadow: 0 0 2px #000;
margin-left: 50px;
}
nav ul{
flex: 2;
display: flex;
justify-content: space-evenly;
}
nav ul li{
list-style: none;
}
nav ul li a{
text-decoration: none;
color: rgb(2, 37, 18);
font-size: 1em;
font-weight: 700;
text-transform: uppercase;
padding: 5px 10px;
}
.fa-facebook{
color: #3b5998;;
}
.fa-instagram{
color: #ee1414;
}
nav ul li a:hover{
border-bottom: 2px solid cadetblue;
}
/*SubMenu - Begin*/
nav ul li.has-sub > a {
    padding-right: 30px;
}
/* Drop icon */
nav ul li.has-sub > a:after {
    position: absolute;
    top: 22px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #F14F80;
    content: '';
}
nav ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #FFF;
    content: '';
}
nav > ul > li.has-sub > a:before {
    position: absolute;
    top: 19px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    transition: all .25s ease;
}
nav > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0;
}
nav ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #FFF;
    content: '';
    transition: all .3s ease;
}
nav ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0;
}
nav ul ul li.has-sub:hover,
nav ul li.has-sub ul li.has-sub ul li:hover {
    background: #751CEC;
}
/*SubMenu - End*/
nav .menu{
font-size: 2.5em;
display: none;
}

@media (max-width:1000px){
  nav ul{
  position: fixed;
  top:100px;
  right: -150%;
  background: whitesmoke;
  height: calc(100vh - 100px);
  width: 50%;
  flex-direction: column;
  align-items: center;
  transition: right 0.5s linear;
  }
  nav .menu{
  display: block;
  width: 100px;
  text-align: center;
  }
  #chk1:checked ~ ul{
  right: 0;
  }

	.aktiv img{
	padding-top:10%;
	width:100%;
	}
	.aktiv2 img{
	width:100%;
	}	
	.bck{
	padding-top:15%;
	padding-bottom:15%;
} 

}
@media (max-width:500px){
  nav .logo{
  margin-left: 10px;
  }
  .logo h1{
  font-size: 1.5em;
  }
  nav ul{
  width: 100%;
  }
}
input[type="checkbox"]{
display: none;
}