@font-face {
    font-family: 'ford_scriptford_script';
    src: url('fordscript-webfont.woff2') format('woff2'),
         url('fordscript-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* Body */
body {
	font-family: 'Roboto', arial, helvetica, sans-serif;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.5;
	padding: 0;
	margin: 0;
	background: 
		linear-gradient(
      		rgba(0, 0, 0, 0.5), 
      		rgba(0, 0, 0, 0.5)
    	),
    	url("sitebackground.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

/* Global */
.container {
	width: 80%;
	margin: auto;
	overflow: hidden;
}

ul {
	margin: 0;
	padding: 0;
}

h1, h3 {
	font-family: 'Oxygen', arial, helvetica, sans-serif;
}

/* Header */
header {
	color: #ffffff;
	padding-top: 30px;
	min-height: 70px;
	border-bottom: #00ffff 3px solid;
}

header a{
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
}

header li {
	float: left;
	display: inline;
	padding: 0 20px;
}

header #branding {
	float: left;
}

header #branding h1 {
	margin: 0;
	font-family: 'ford_scriptford_script';
	font-size: 50px;
	display: inline;
}

header #branding img {
	margin: 10;
	display: inline;
}

header nav {
	float: right;
	margin-top: 10px;
	font-family: 'Oxygen', arial, helvetica, sans-serif;
}

header .highlight,  header .active a{
	color: #00ffff;
	font-weight: bold;
}

header a:hover {
	color: #cccccc;
}

/* Content */
.content{
	min-height: 400px;
	text-align: center;
	color: #ffffff;
}

.content h1{
	margin-top: 100px;
	font-size: 55px;
	margin-bottom: 10px;
}

.content p{
	font-size: 20px;
}

.content table{
	text-align: left;
}

.content table td{
	padding: 5px 20px;
}

/* Galerie */
.galerie, .galerie li {
	margin: 5px;
	padding: 5px;
}

.galerie li {
	display: inline-block;	
	list-style-type: none;
	/*width: 45%;*/
}

.galerie img{
	padding: 0;
	margin: 0;	
	width: 100%;
	border-radius: 10px 10px 10px 10px;
}

.galerie button {
  	padding: 5px;
  	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	box-sizing: border-box;
	border-radius: 10px 10px 10px 10px;
	color: #ffffff;
	background-color: black;
}

/* Termine */
ul#termine li{
	list-style: none;
	padding: 20px;
	margin-bottom: 5px;
}

/* Footer */
footer{
	padding: 20px;
	margin-top: 20px;
	color: #ffffff;
	text-align: center;
	border-top: #00ffff 3px solid;
}

/* Verhalten von Galerie */
@media all and (min-width: 625px) {
	.galerie li {
		width: 200px;
	}

	.galerie img {
		padding: 0;
		margin: 0;
		width: 100%;
	}

	.galerie button {
		padding: 5px;
	}

	.galerie button:focus,
	.galerie button:hover {
		border-color: #00ffff;
	}
}

/* Tablets */
@media(max-width: 1300px){
	header #branding,
	header nav,
	header nav li{
		float: none;
		text-align: center;
		width: 100%;
	}

	header{
		padding-bottom: 20px;
	}

	.content h1{
		margin-top: 40px;
	}

	.container {
	width: 85%;
	margin: auto;
	overflow: hidden;
}
}

/* Mobiles Menu*/
@media screen and (max-width: 760px){
	.burger-nav{
		display: block;
		height: 40px;
		width: 100%;
		background: url(menu_button.png) no-repeat center;
		cursor: pointer;
	}

	.container {
		width: 95%;
		margin: auto;
		overflow: visible;
	}

	header nav ul{
		overflow: hidden;
		height: 0;
	}

	header nav ul li{
		float: none;
		text-align: center;
		width: 100%;
		margin: 0;
	}

	header nav ul li a{
		color: #fff;
		padding: 10px;
		border-bottom: 1px solid #00ffff;
		display: block;
		margin: 0;
	}

	header nav ul.open{
		height: auto;
	}
}