body {

	background-color: white;
  	background-image: url('/fileadmin/img/Background.png');
	background-repeat: no-repeat;
 	background-attachment: fixed;
  	background-size: cover;

}

h1 {
  
  color: white;
  font-size: 2em;
  letter-spacing: 0.1em;
  text-shadow: 5px 13px 15px black;
  
}

a {
  
  color: white;
  position: relative;
  
}


h2 {
  
  color: white;
  font-size: 1.7em;
  letter-spacing: 0.1em;
  text-shadow: 5px 13px 15px black;
  
}

p {
  
  color: white;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  text-shadow: 5px 13px 15px black;
    padding: 20px;
  
}




.contentbox {

    padding: 50px;
    margin: 50px;
    opacity:1;
 	background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
    position:relative;
    width:90%;
    height:80%;
    z-index:1000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
  
}

.contentbox2 {

    float: left;
    padding: 50px;
    margin: 50px;
    opacity:1;
 	background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
    position:relative;
    width:40%;
    height:80%;
    z-index:1000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
  
}

.overflow {

  width: 100%;
  height: 90%;
  position: relative;
  overflow: scroll;
  
}

.overlay{
    overflow:scroll;
    opacity:1;
 	background-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:1000;
}

ul {
  list-style-type: none;
  margin: 40;
  padding: 20;
  overflow: hidden;
  background-color: rgba(0,0,0,0.5);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
}

li {
  float: left;
}

li a {
  font-size: 1.5em;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  position: relative;
}

a::before {  
  transform: scaleX(0);
  transform-origin: bottom right;
}

a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0 0 0 0;
  background: rgba(50, 50, 50, 10);
  z-index: -1;
  transition: transform .3s ease;
}