:root
{
    --image-scale:max(20vw, 22vh);
}

@font-face {
    font-family: "custom font";
    src: url(./);
}
*{
    
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    background-color: white;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
     
}

html, body {
    background: rgba(0, 0, 0, 0.7) url("images/Kerk.jpg");
    background-size: cover;
    background-blend-mode: darken;
    height: 100%;
    width: 100%;
    
}

li,a, button{
   font-weight: 500;
   font-size: 15px;
   color: black;
   text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    overflow: hidden;
    background-color: orange;
}

header img {
    max-width: max(20vw,10vh);

}

.logo{
    cursor: pointer;
}

header nav ul {
    padding: max(0.5vw, 0.5vh) max(2vw, 2vh);
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.nav__links li {
    display: inline-block;
    padding: 0px 20px;
    text-decoration: none;

}

.nav__links li a{
    transition: all 0.3ms ease 0;
}

.nav__links li a:hover{
    transition: all 0.3ms ease 0;
}

header nav ul li a {
    padding: max(1vw, 1vh) max(3vw, 3vh);
    border: none;
    border-radius: 50px;
    display: flex;
    font-size: clamp(2px, max(1.25vw, 1.25vh), max(2vw, 2vh));
    font-weight: 500;
}

.background{
    position: absolute;
    background-color: darkblue;
    width: 100%;
    height: 50%;
}
 
.img2{
    height: 300px;
}

li:hover{
    color:orange
}

#dropbox
{
    width: 4%;
    cursor: pointer;
    position: absolute;
    left: 5px;
}

.foto1
{
 width: max(20vw, 22vh);
 width: min(35vw, 40vh); 
 position: absolute;
 top: 65%;
 transform: translate(-30);
 right: 30px;
 border: 5px  solid transparent;
 border-color: black;
}
.foto2{
 width: max(20vw, 22vh);
 width: min(35vw, 40vh);
 position: absolute;
 top: 35%;
 transform: translate(-30);
 right: 30px;
 border: 5px  solid transparent;
 border-color: black;
}

.text2{
   position: absolute;
   top: 50%;
   font-size: clamp(2px, max(1.25vw, 1.25vh), max(2vw, 2vh));
   transform: translateY(-50%);
   padding: 1%;
   background-color: orange}
   
/* first text of first page.*/

@keyframes dropbox{
  0%{
   transform: 200px;
  }
  100%{

  }
}

footer
{
 position: absolute;
 width: 100%;
 bottom: 0;
 height: max(2vw, 2vh);
 background-color: white;
}