/* Galerie */
body {
  	background-color:#121212;
    min-height:94vh;
}

/* Container mit 5 Spalten und x Zeilen */
#container {
	display:grid;     
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 4.2em 12em 13em 10em auto; 
	margin:0px;
	box-sizing:border-box;
	color:white;
	font-size:100%;
	font-family: "Serif";
	font-weight:bold;
	font-style:italic;
	text-shadow:2px 2px black;  
	min-height:91vh;
	width:100%;
	background-color:#000000;
	max-width:90vw;
	margin:0 auto;
}
     
/* 1. Zeile, Logo */
/* -------------- */
#logo {
	grid-column:1/6;
	grid-row:1;
	text-align:center;
	background-color:#000000;
}
      
#logo img {
	width:11em;
}

img { 
	width:100%;
}
    
/* 2. Zeile, Menu */
/* ----------------------- */
#oberteil {
	grid-column:1/6;
	height:30em;   
	
	background:url(../images/panoramaindex.jpg) no-repeat center center;
	background-size:cover; 
	overflow:hidden;
	border-style:  none none solid none;
}
      
/* 3. Zeile, Spruch */
/* ---------------- */
h2 {
	grid-column:1/6;
	grid-row:3;
	margin: 0em 0em 0em 10%;
}

h1 {
	grid-column:1/3;
	grid-row:4;
	font-size:4em;
	color:#00aaff;
	margin:0em 0em 0em 10%;
}

/* ab 4. Zeile, Bilder Hoch und Quer */
/* ------------------------------ */
/*  Top, Right, Bottom, Left  */ 
article {
    grid-column: 1/6;
}
      
.bild {
	display:block;
	border:1px solid;
	border-color:gray;
	float: left;
	width:auto;
	max-height:120px;
	margin:0.0em 0em 0em 0.0em;       /*hier die .0 durch .5 ersetzen */
}
      
/* Dropdown Menu */
/* -------------------------------------------------------------------------- */      
.topnav {
	overflow: hidden;
}

.topnav a {
	float:left;
	display: block;
	text-align: center;
	padding: 0.4em 0.5em;
	text-decoration: none;
	font-size: 2em;
	font-style:italic;
}

/* Add an active class to highlight the current page */
.active {
	color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
	display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
	float: left;
	overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
	font-size: 2em;
	border: none;
	font-family: "serif";
	font-weight:bold;
	font-style:italic;
	text-shadow: 2px 2px black;
	color: white;
	padding: 0.4em 0.5em;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

/* Style the dropdown content (hidden by default) */
/*  Top, Right, Bottom, Left  */ 
.dropdown-content {
	display: none;
	position: absolute;
	min-width: 1em;
	box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.9);
	z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
	float: none;
	background-color:rgba(0,0,0,0.3);
	color: white;
	font-family:"arial";
	font-style:normal;
	font-weight:normal;
	font-size: 1.5em;
	padding:0em 0em 0.1em 1em;
	text-decoration: none;
	display: block;
	text-align: left;
}

/* Add a blue foreground on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
	color: #00aaff;
}

/* Add a blue foreground to dropdown links on hover */
.dropdown-content a:hover {
	color: #00aaff;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
	display: block;
}

      
/* Hier beginnt der Media-Teil */
/* ---------------------------------------------------------------------------------- */
@media screen and ( max-width : 1000px ) {
	body {
		font-size: 80%;
    }
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
	body {
		font-size: 70%;
    }

    h2 {
        display:none;
    }       
        
    article {
        margin:22em 0em 0em 0em;      
    }
        
    .topnav a:not(:first-child), .dropdown .dropbtn {
		display: none;
	}

	.topnav a.icon {
		color:white;
		font-style:normal;
		float: right;
		display: block;
	}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0em;
	}

	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
		padding:0.4em 0.5em 0em 0.5em;
	}

	.topnav.responsive .dropdown {float: none;}
	.topnav.responsive .dropdown-content {position: relative;}
	.topnav.responsive .dropdown .dropbtn {
		display: block;
		width: 100%;
		padding:0.4em 0.5em 0em 0.5em;
		text-align: left;
	}
}       
