@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');

body{margin:0; font-family: 'Roboto';}

.page{
  width:80%;
  max-width:1280px;
  margin:auto;
  background-color:#FAF9FD;
}

.header{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  }
  
.logocontainer a{
  background-color:#FCCF9F;
  width: 600px;
  text-align:center;
  display:block;
}

.buttoncontainer{
  display:flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
  align-content:center;
}

.flexbreak{width:100%}

.searchcontainer{
  display: flex;
  justify-content: center;
  align-items: center;
}

.langbutton img{
  width:24px;
  }
  
.menu{
  width:100%;
  height:70px;
  margin-top:5px;
  display: flex;
  justify-content: space-evenly;
}
  
.menubutton{
  flex: 1;
  display:block;
  background-color:#3D98F4;
  color:white;
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:150%;
  border-left:#2a6ac9 2px solid;
  text-decoration:none;
}

.menubutton:first-child{border-left:0px;}
.menubutton:hover{background-color:#2a6ac9;}


.photoslider-container{
  position:relative;
  margin-top:5px;
  width:100%;
  height:600px;
}

.photoslider{
  width:100%;
  height:100%;
  background-position: center center;
  background-size: cover;
  display:none;
}

#photo1{background-image:url(https://images.unsplash.com/photo-1593616040388-df0aa9049cd2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80); display:block}
#photo2{background-image:url(https://images.unsplash.com/photo-1589660876267-a0677f572c83?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1652&q=80);}
#photo3{background-image:url(https://images.unsplash.com/photo-1591704899046-a82394660381?ixlib=rb-1.2.1&auto=format&fit=crop&w=1650&q=80);}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
 background-color: rgba(0,0,0,0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.footer{
  background-color:#C0C7DD;
  width:100%;
  height:200px;
  margin:0;
  margin-top:1em;
}

.footer .menu{
  vertical-align:central;
}

.footer .menu .menubutton{
  background-color:#C0C7DD;
  border:#9d88b8 2px solid;
  border-right:0px;
}

.footer .menu .menubutton:hover{
  background-color:#9d88b8;
}

.map{
  margin-top:5px;
  width:100%;
  height:600px;}
  
  
.contactfield{
  font-size:110%;
  color:white;
  background-color:#3D98F4;
  padding:1em;
  margin-top:5px;
}

h2{margin-top:0}