html {
    overflow-x: hidden;
    display: static;
  }
  *,
  *::after,
  *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  @import url("https://fonts.googleapis.com/css2?family=Paytone+One&display=swap");
  
  button,
  summary {
    cursor: pointer;
  }
  
  :root {
    --website-background: #f8b133;
    --text-kaders: #ececec;
    --text-color: #42210b;
    --shadows: #c18b34;
  
    --card-color: #333;
    --card-background: #fff;
    --card-background-accent: gold;
  }

  body {
    height: 100vh;
    overflow: hidden;
    /* background: var(--website-background); */
    background-color: oldlace;
    position: static;
    display: inline-block;
    
  }
  
  p {
    font-family: monospace;
    color: var(--text-color);
    line-height: 1.8em;
  }
  
  video{
    border-style: dotted;
    outline: none;
    border-color: oldlace;
  }

  h1,
  h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    color: var(--text-color);
    font-size: 2em;
    margin-left: 10%;
  }

  h3{
    font-size: 1em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--text-color);
  }

  a{
    text-decoration: underline;
    color: var(--text-color);
  }
  
  header {
    width: 100vw;
    padding-left: 10vw;
    padding-right: 10vw;
    height: 15vh;
    z-index: 100;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  
  nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-kaders);
    transform: translateX(-100%);
    transition-duration: 0.3s;
    z-index: 100;
  }
  
  nav ul {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    z-index: 100;
  }
  
  nav a {
    text-decoration-line: none;
    font-family: "Paytone One", sans-serif;
    color: var(--text-color);
    font-size: 3em;
    line-height: 2em;
    text-transform: uppercase;
    z-index: 100;
  }
  
  
  nav.open {
    transform: translateX(0%);
    z-index: 100;
  }
  
  header > button {
    /* position: absolute;
    left: 5em;
    top: 2em; */
    width: 10em;
    height: 5em;
    appearance: none;
    border-style: solid;
    border-color: #42210b;
    border-radius: 0.5em;
    border-width: 0.2em;
    background-color: oldlace;
    /* box-shadow: 5px 5px 0 2px var(--shadows); */
    /* visibility: hidden; */
  }

  header nav button { /*knop uitschuifmenu*/
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translate(-50%, -50%);
  
    width: 10em;
    height: 5em;
    /* appearance: none; */
    border-style: none;
    border-radius: 0.5em;
    background-color: var(--text-color);
    color: var(--text-kaders);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
  }

  header img{
    width: 25%;
    float: right;
    
  }


  /**pagina content **/

  main{
      position: relative;
      width: 80vw;
      height: 80vh;
      display: flex;
      justify-content: space-between;

      flex-direction: row;
      row-gap: 10%;
      margin-left: auto;
      margin-right: auto;


  }

/**************/
  main > section:first-of-type{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 100%;
  }

  /* main > section:first-of-type img{
    object-fit: cover;
    
    height: 80%;
  } */


  a.lightbox img {
    max-width: 100%;
    /***border: 3px solid white;***/
    box-shadow: 0px 0px 8px rgba(0,0,0,.3);
    margin: 94px 20px 20px 20px;
    }

    a.lightbox2 img {
      max-width: 100%;
      
      
      }

  #juicypeople_foto{
    max-height: 500px;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0,0,0,.3);
    margin: 30px 20px 20px 20px;
  }
  #vintage_pooster{
    max-height: 500px;
  }
    
    /* Styles the lightbox, removes it from sight and adds the fade-in transition */
    
    .lightbox-target {
    position: fixed;
    top: -100%;
    max-width: 100vw;
    background: rgba(0,0,0,.7);
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    overflow: hidden;
     
    }
    
    /* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
    
    .lightbox-target img {
    margin: auto;
    position: absolute;
    top: 0;
    left:0;
    right:0;
    bottom: 0;
    max-height: 0%;
    max-width: 0%;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0,0,0,.3);
    box-sizing: border-box;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
      
    }
    
    /* Styles the close link, adds the slide down transition */
    
    a.lightbox-close {
    display: block;
    width:50px;
    height:50px;
    box-sizing: border-box;
    background: white;
    color: black;
    text-decoration: none;
    position: absolute;
    top: -80px;
    right: 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    }
    
    /* Provides part of the "X" to eliminate an image from the close link */
    
    a.lightbox-close:before {
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top:10px;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg);
    }
    
    /* Provides part of the "X" to eliminate an image from the close link */
    
    a.lightbox-close:after {
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top:10px;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
    }
    
    /* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
    
    .lightbox-target:target {
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
      overflow:scroll;
    }
    
    .lightbox-target:target img {
    max-height: 100%;
    max-width: 100%;
    }
    
    .lightbox-target:target a.lightbox-close {
    top: 0;
    }

/**************/

iframe{
  width: 100%;
  height: 500px;
}


  main > section:nth-of-type(2){
    width: 45%;
    max-height: fit-content;
    overflow-y: scroll;
    overflow-x: hidden;
    /* background-color: var(--website-background); */
    border-radius: 00.5em;
    float: right;
    display: inline;
  }

  main > section:nth-of-type(2) figure img{
    
    max-width: 100%; 
   
    /* margin-bottom: 10em;

  }

  #theo_walking{
    width: 10%;
  }

  main > section:nth-of-type(2) figure{
    
    max-width: 100%;
    /* height: 50px; */
    margin-bottom: 5em;
    
    
  }

  main > section:nth-of-type(2) div h3{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    color: var(--text-color);
    font-size: 1em;
    margin-left: 10%;
  }

  main > section:nth-of-type(2) article{
      width:90%;
      max-height: fit-content;
      margin-bottom: 10vh;
      padding-left: 10%;
      margin-top: 10vh;
      
  }

  main > section:nth-of-type(1) article{
    width:100%;
    height: 5vh;
    margin-bottom: 10vh;
    padding-left: 10%;
    margin-top: 10vh;
    
    display: flex;
    flex-direction: row;
    
}

main > section:nth-of-type(1) article img{
  width:15%;
  
}

figure{
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  
}
figcaption{
  font-size: x-small;
  font-family: monospace;

}

#picsNaastelkaar{
  margin-top: 10px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
#picsNaastelkaar img{
  width: 45%;
  
}

  video{
    margin-top: 10px;
    z-index: -1;
  }

  iframe{
    margin-top: 10px;
  }





















  @media only screen and (max-width: 910px){



    main{
        position: relative;
        width: 80vw;
        /* height: fit-content; */
        display: flex;
        justify-content: space-evenly;
  
        flex-direction: column;
        row-gap: 5%;
        margin-left: auto;
        margin-right: auto;
  
  
    }

    main > section:first-of-type{
      width: 100%;
        height: 40vh;
        display: flex;
        justify-content: space-between;
      }
    
      main > section:first-of-type img{
        margin: 0;
        
        max-height: 100%;
      }

      a.lightbox img {
        max-width: 100%;
        border: 3px solid white;
        box-shadow: 0px 0px 8px rgba(0,0,0,.3);
        
        }

      main section:nth-of-type(1) article {
          width: 100%;
          height: 5vh;
          margin-bottom: 10vh;
          padding-left: 10%;
          margin-top: 1vh;
          display: flex;
          flex-direction: row;
          }
    
      main > section:nth-of-type(2){
        width: 100%;
        height: 40vh;
        overflow: scroll;
        /* background-color: var(--website-background); */
        border-radius: 00.5em;
        float: right;
      }

    

      header{
        height: 10vh;
      }
    
      main > section:nth-of-type(2) div h3{
        margin-left: 0%;
        font-size: 5em;
        text-align: center;
        margin-right: 500px;
      }
    
    
      main > section:nth-of-type(2) article{
          width:90%;
          height: 2vh;
          margin-bottom: 5vh;
          /* background-color: indianred; */
          padding-left: 10%;
      }
      main > section:nth-of-type(2) article{
       margin-top: 0;
    }

    body {
        min-height: fit-content;
        /* overflow: hidden; */
        background-color: oldlace;
    
        position: static;
        display: inline-block;
        
      }
  
  }


  footer{
    background-color: white;
    width: 100%;
    margin-top: 1vh;
    height: 5vh;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }