html{
	margin: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}
body{
	background-color: rgba(1,1,1,1);
}

#menutext{
	text-decoration: none;
	color: black;
	font-size: 2vw
}

#menutext:hover {
	color:white;
	background-color:black;
	border: solid;
	border-color: white;
	-moz-box-shadow: 0 0 10px  rgba(255,255,255,1);
    -webkit-box-shadow: 0 0 10px  rgba(255,255,255,1);
    box-shadow: 0 0 10px  rgba(255,255,255,1);
}

.menul{
	background-color: rgba(255,255,255,1);
	border-radius: 3vh;
	position: fixed;
	top: 2vh;
	left: 5vw;
	width: 10vw;
	height: 2.2vw;
	text-align: center;
	padding: 5px;
}

.menur{
	background-color: rgba(255,255,255,1);
	border-radius: 5vw;
	position: fixed;
	top: 2vh;
	right: 5vw;
	width: 10vw;
	height: 2.2vw;
	text-align: center;
	padding: 5px;
}


.container {
  position: relative;
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.image {
	background-color: white;
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
    vertical-align: middle;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .image {
  opacity: 0.28;
  -moz-box-shadow: 0 0 100px  rgba(255,255,255,1);
   -webkit-box-shadow: 0 0 100px  rgba(255,255,255,1);
   box-shadow: 0 0 100px  rgba(255,255,255,1);
}

.container:hover .middle {
  opacity: 1;
}

.text {
  background-color: rgba(0,0,0,0);
  color: white;
  font-size: 2vw;
  padding: 16px 32px;
}

