@charset "utf-8"; 

	@font-face {
	font-family: 'Poppins-Regular';
	/*src: url('Poppins-Regular.otf');*/
	src: url('../Poppins-Regular.ttf');
  }
  
  img.zoom 
  {  z-index: 999999;
  transition: transform 0.8s;  
  -moz-transition: transform 0.8s;  
  -webkit-transition: transform 0.8s;  
  -o-transition: transform 0.8s;  
  -ms-transition: transform 0.8s;
  } 
  
  img.zoom:hover {  
  cursor: zoom-in;  
  cursor: -moz-zoom-in;  
  cursor: -webkit-zoom-in;  
  transform: scale(2.0, 2.0);  
  -moz-transform: scale(2.0, 2.0);  
  -webkit-transform: scale(2.0, 2.0);  
  -o-transform: scale(2.0, 2.0);  
  -ms-transform: scale(2.0, 2.0); 
  z-index:2.01;
  /*border: 30px solid #fff;*/
  box-shadow: 0px 0px 400px white, 
              0px 0px 400px white;
    position:relative;
	margin: 0 auto;
  }

@media screen and (max-width: 767px){
	img.zoom:hover {  
	transform: scale(1.0, 1.0);  
	-moz-transform: scale(1.0, 1.0);  
	-webkit-transform: scale(1.0, 1.0);  
	-o-transform: scale(1.0, 1.0);  
	-ms-transform: scale(1.0, 1.0); 
	box-shadow:none;
}}

.sidebar-nav {
    position: fixed;
    top: 80px;
    width: 225px;
	height: auto;
	/*margin-top:60px;*/
	padding-top: 20px;
    padding-left: 20px;
	left: 5%;
    list-style: none;
	/*background-color:#fff;*/
	-moz-border-radius: 10px;
	background: #F0F6F9;
	border: 2px solid #696969;
	text-align: left;
	line-height: 180%;
	font-family: Poppins-Regular, verdana, sans-serif;
	box-shadow: 0px 0px 1400px gray, 
	0px 0px 1400px gray;
}

@media screen and (min-width: 0px) and (max-width: 768px) {
.sidebar-nav {
	width: 250px;
	font-size:17px;
	}
	}
	
.sidebar-nav li {
    /*text-indent: 20px;*/
    line-height: 20px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

#bilder {
	margin-left: 5%; 
	margin-right: 5%;
	margin-top:50px;
	background-color: #fff;
	font-family: Poppins-Regular, verdana, sans-serif;
}

h1 {
	font: 1.5em Poppins-Regular, verdana, sans-serif;
	color: #ffffff;
	text-shadow: black 0.1em 0.1em 0.2em;
	font-weight: bold;
	margin-top:40px;
	text-align: center
}

img {
		width:100%;
}

body {
	margin:0 auto;
	background-color: #ffffff;
}

#milchglas {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	width: 100%; 
	height: 100%
}  

* {
  margin: 0;
  padding: 0;
  /*box-sizing: border-box;*/
}

.menuItem {
  display: block;
  margin: 2rem 4rem;
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
}

.menuItem:hover {
  text-decoration: underline;
}

.hamburger {
  position: fixed;
  z-index: 9999999;
  top: 2rem;
  /*left: 1.4rem;*/
  left: 5%;
  padding: 4px;
  border: black solid 1px;
  /*background: white;*/
  cursor: pointer;
}

.closeIcon {
  display: none;
}

.menu {
  position: fixed;
  transform: translateY(-100%);
  transition: transform 2.0s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.showMenu {
  transform: translateY(0);
}
  