@charset "ISO-8859-1";

* {
	box-sizing: border-box;
}

body{
	margin : 0;
	padding : 0;
	font-size: 14px;
}
body, h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
}
footer{
	font-size: 1rem;
	display : bottom;
	justify-content: space-between;
	align-items: center;
	background-color : #333;
	color: white;
}
footer li{
	list-style: none;
	color: white;
}
footer li a {
	text-decoration: none;
	color: white;
	padding: 1rem;
	display: block;
}

#Leistungen  {
  margin-right: 20px;
  margin-left: 20px;

  background-color: #FFF0F5;
  text-align: justify;
  font-size:14px;
}
#Kontakt {
  margin-right: 20px;
  margin-left: 20px;
  background-color: #FFF0F5;
  font-size:14px;
}
#Impresum  {
  margin-right: 20px;
  margin-left: 20px;
 background-color: #FFF0F5;
  font-size: 12px;
  text-align: justify;
}

.main {
	justify-content: space-between;
	align-items: right;
	background-color: #FFF0F5;
	color: black;
	margin-right: 20px;
	margin-left: 20px;
}
.main-text {
	margin: 20px 50 20px;
	 text-align: justify;
}
h2{
	padding : 20px 50px 2px;
}
.square{
	float: right;
 	height:15px;
	width: 15px;
    padding: 10px;
	background: #287FA0;

}
.line-1{
	margin-top: 5px;
	width: 60px;
	height: 2px;
	background: green;
	display: inline-block;	
}
.line-2{
	margin-top: 5px;
	width: 100px;
	height: 2px;
	background: #287FA0;
	display: inline-block;
	
}
.line-3{
	margin-top: 5px;
	width: 140px;
	height: 2px;
	background: #E28F8C;
	display: inline-block;
	
}
/*....*/
.square-right{
	height:15px;
	width: 15px;
	display: inline-block;
	background: #287FA0;
	margin: 5px 0;
}
.line-1-right{
	margin-top: 5px;
	width: 60px;
	height: 2px;
	background: green;
	display: inline-block;	
}
.line-2-right{
	margin-top: 5px;
	width: 100px;
	height: 2px;
	background: #287FA0;
	display: inline-block;
	
}
.line-3-right{
	margin-top: 5px;
	width: 140px;
	height: 2px;
	background: #E28F8C;
	display: inline-block;
	
}


.line{
	line-height:  8px;
}
.navbar {
	display : flex;
	justify-content: space-between;
	align-items: center;
	background-color : 	#708090;
	color: white;
}
.brand-title{
	font-size: 1.5rem;
	margin: .5rem
}

.navbar-links ul{
	margin: 0;
	padding: 0;
	display: flex;
}

.navbar-links li{
	list-style: none;
}

.navbar-links li a {
	text-decoration: none;
	color: white;
	padding: 1rem;
	display: block;
}

.navbar-links li:hover{
	background-color: #555;
}
.toggle-button{
	position: absolute;
	top: .75rem;
	right: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	with: 30px;
	height: 21px;
}

.toggle-button .bar{
	height: 3px;
	width: 100%;
	background-color: white;
	border-radius: 10px;
}
@media (max-with:400px){
	.toggle-button{
		display: flex;
	}
	
	.navbar-links{
		display: none;
		width: 100%;
	}
	.navbar {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.navbar links ul{
		width: 100%;
		flex-direction: column;
	}
	
	.navbar links li{
		text-align: center;
	}
	
	.navbar links li a{
		padding: .5rem 1rem;
	}
	
	.navbar-links.active{
	display: flex;}
}


