﻿/* Logo & menu bar*/
.logo {
	border-radius: .3em;
	align: left;
	vertical-align: middle;
	width: 3.5em;
}

.menubar {
	display:inline;
	visibility:hidden;
	border-radius: .3em;
	background: rgba(255, 255, 255, 0);
	padding: .2em .2em .2em .2em;
	margin-left: 0.5em;
}

.menubar a:link {
	color: #1C6295;
	text-decoration: none;
}

.menubar a:visited {
	color: #1C6295;
	text-decoration: none;
}

.menubar a:hover {
	color: #1C6295;
	text-decoration: underline;
}

footer a:link {
	color: #1C6295;
	text-decoration: none;
}

footer a:visited {
	color: #1C6295;
	text-decoration: none;
}

footer a:hover {
	color: #1C6295;
	text-decoration: underline;
}

/* Drop down menu*/
.dropbtn {
  background: rgba(255, 255, 255, 0);
  color: #1C6295;
  font-weight:bold;
  font-size:large;
  border: none;
  cursor: pointer;
  padding: .2em;
  width: 2em;
  height: 2em;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
  min-width: 4em;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #1C6295;
  text-decoration: none;
  padding: .2em;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #f1f1f1;}


/*Single styles*/
h1{
	color: #1C6295;
	font-size: x-large;
}

h2{
	color: #1C6295;
	font-size: large;
}
h3{
	font-size: medium;
}
h4{
	font-size: medium;
	font-style: italic;
	font-weight: normal;
}

a:link {
	color: #1C6295;
}

a:visited {
	color: #1C6295;
}

.auto-style1 {
	background: rgba(255, 255, 255, 0.75);
	padding: .2em .2em .2em 1em;
	border-radius: .3em;
}

.auto-style3 {
	color: #1C6295;
	font-style: italic;
}

.img-foto {
	width: 30%;
	margin: .5em;
	opacity: 1;
}

.img-foto2 {
	width: 40%;
	margin: .5em;
	opacity: 0.8;
}

.sn-logo {
	width: 1em;
}

.nowrap { 
	white-space: nowrap;
}

ul {
	margin: 0 0 0 1em;
	padding: 0;
}

/* Mobile first - alle Dokument-Blöcke bekommen 100% Breite */
body {
	font-family:  Calibri, "Trebuchet MS", sans-serif;
	background-color: #51567B ;
	background-image: url('Bild-Schiffe-k.jpg');
	background-repeat: no-repeat;
}

header {
	top: 0px;
	left: 0px;
	right: 0px;
    margin-bottom: 5em;
   	border-radius: .3em
}

nav {
	background: rgba(255, 255, 255, 0);
	position:fixed;
	top: 0.5em;
	right: 0.5em;
	border-radius: .3em;
}

main{
	background: rgba(255, 255, 255, 0.75);
	border-radius: .3em;
	padding-left: .3em;
	}
	
aside{
	background: rgba(255, 255, 255, 0.75);
	border-radius: .3em;
	padding-left: .3em;
	}
	
footer{
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: .3em;
	background: rgba(255, 255, 255, 0);
}

/* nebeneinander bei ausreichender Breite */
@media all and (min-width: 35em) {
  body {
    background-image: url('Bild-Schiffe.jpg'); 
 
    display: flex;
    flex-flow: row wrap;
    max-width: 65em;
  } 
    
  header{
  	flex: 1 100%;
	margin-bottom: 13em;
	 }

  main {
    flex: 2 1 0%;
  }
  
  aside {
    flex: 1 1 0%;
	margin-left: .5em;
  }
  
  footer{
  	flex: 1 100%;
  }
    
  .menubar {
	visibility: visible;
  }
  
nav {
   visibility:hidden;
}

}


