html, body {
    margin: 0;
    padding: 0;
    height: 100%;
	font-family: 'Roboto';
	background-color: gray;
}

.container{
  background-image: url("img/bg.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  background-attachment: fixed;
  margin: 0;
}

.content{

}

.logo{
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);

}

#logo {
  pointer-events: none;
  width: 30em;
  height: auto;
  border-radius: 1em;
  box-shadow: 0px 0px 100px rgba(210, 180, 80, 0.15);
}

button{
  font-family: 'Helvetica', 'Arial', sans-serif;
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: white;
  font-size:2.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  padding:0.5em;
  backdrop-filter: blur(6px);
  background: rgba(50, 50, 50, 0.2);
  border-radius: 0.3em;
  box-shadow: inset 0px 4px 8px rgba(255,255,255,0.1);
  border: 0.1em, white; 
  border-style: solid;
  
}

button:hover {
	box-shadow: inset 0px 4px 8px rgba(215,215,255,0.3);
	box-shadow: 0px 0px 20px rgba(210, 180, 80, 1);
	background: rgba(0, 0, 0, 0.2);
	transition: 0.5s;
	color: rgba(210, 180, 80, 1);


}

button:active {
 color: rgba(210, 180, 80, 0.75);
}

footer{

  position: fixed;
  height: 3em;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: black;
  color:white;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
}

.socials {
float: left;
margin-left: 1em;
margin-top: 0.5em;
}

.contact {
float: right;
margin-right: 1.5em;
margin-top: 0.5em;
}

a {
 color: white;
 text-decoration: none;
 }

a:hover {
    color: rgba(210, 180, 80, 1);;
	transition: 0.25s;
}

ul {
  overflow: hidden;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul li {
	float: left;
	
}

ul li a {
display: block;
padding: 0px 0.5em;

}

.navbar{
	display:none;
	
}

.banner{
	position: fixed;
	width:100%;
	right:0px;
	top:0;
	color: white;
	
}

/*telefoon schaal */

@media only screen and (max-width: 765px) {

.container{
  background-image: url("img/bg.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  background-attachment: fixed;
  margin: 0;
}

.logo{
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);

}

#logo {
  pointer-events: none;
  width: 15em;
  border-radius: 1em;
  box-shadow: 0px 0px 100px rgba(210, 180, 80, 0.15);
}

button{
  font-family: 'Helvetica', 'Arial', sans-serif;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: white;
  font-size:2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  padding:0.5em;
  backdrop-filter: blur(6px);
  background: rgba(50, 50, 50, 0.2);
  border-radius: 0.3em;
  box-shadow: inset 0px 4px 8px rgba(255,255,255,0.1);
  border: 0.1em, white; 
  border-style: solid;
  
}

footer{
display:none
}

.navbar{
	display:inline-block;
	
}

.banner{
	position: fixed;
	width:80%;
	right:1em;
	top:0;
	color: white;
	font-size: 0.8em;
	
}

.mcontact {
	
	margin-bottom: 3em;
	color: white;
}

}