      /* ========================*/
      /*= met custom properties =*/
      /* ========================*/

:root{
  /* kleuren */
  --accent-color: #ff2c60;
  --font-color:white;
  --background-color: black;
  --footer-color: #c5c3c3;
  --footer-background-color: #282828;

   /* fonts  */
   --font-hoofd:'Black Han Sans', sans-serif;

   /* menu button colors  */
   --button-menu-color1: white;
   --button-menu-color2: rgba(255, 255, 255, 0.564);
   --button-background-color: rgba(0, 0, 0, .5);
}


@media (prefers-color-scheme: light){
  :root{
     /* kleuren */
  --accent-color: #ff2c60;
  --font-color:black;
  --background-color: white;
  --footer-color: #c5c3c3;
  --footer-background-color: #282828;

   /* fonts  */
   --font-hoofd:'Black Han Sans', sans-serif;

   /* menu button colors  */
   --button-menu-color1: black;
   --button-menu-color2: rgba(255, 255, 255, 0.564);
   --button-background-color: rgba(255, 255, 255, 0.5);
  }

  header nav ul li{
    background-color: rgba(255, 255, 255, 0.843);
  }

  header nav ul:last-of-type li a img{
    filter: brightness(0);
  }

  /* Social media icons color veranderen naar zwart */
  main section:nth-of-type(2)  nav ul li a img,
  main section:nth-of-type(3)  nav ul li a img{
  filter: brightness(0);
  }

  .songsPage main section nav ul li a img{
    filter:none;
  }

  /* footer text color naar wit verandren */
  footer p{
    color: var(--background-color);
  }
}

    /* ================== */
    /* algemeen animaties */
    /* ================== */
    @keyframes afterline{
      from{
        transform:scalex(0);
      }
      to{
        transform:scalex(1);
      }
    }
    
    @keyframes beforeline{
      from{
        transform:scalex(0);
      }
      to{
        transform:scalex(1);
      }
    }
    
    @keyframes lampeffect{
      0%{
        opacity: 0;
      }
      25%{
        opacity: 1;
      }
      50%{
        opacity: .5;
      }
      75%{
        opacity: 0;
      }
      100%{
        opacity: 1;
      }
    }
    
    header>img{
      animation-name: lampeffect;
      animation-duration: .5s;
      animation-iteration-count: 1;
      animation-delay: .7s;
      animation-fill-mode: both;
    
      animation-timing-function: linear;
    }
    
    header section h2{
      animation-name: lampeffect;
      animation-duration: .5s;
      animation-iteration-count: 1;
      animation-delay: .5s;
      animation-fill-mode: both;
    
      animation-timing-function: linear;
    }
    
    header section div span:nth-of-type(2n){
      animation-name: lampeffect;
      animation-duration: .7s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: both;
    
      animation-timing-function: linear;
    }
    
    header section div span:nth-of-type(2n+1){
      animation-name: lampeffect;
      animation-duration: .5s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    section.appear h3,
    section.appear p{
      animation-name: lampeffect;
      animation-duration: .5s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    section.appear img{
      animation-name: lampeffect;
      animation-duration: .6s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    section.appear h3::after{
      animation: afterline;
      animation-duration: 1s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: forwards;
      animation-timing-function: linear;
    
      transform-origin: left;
    }
    
    section.appear h3::before{
      animation: beforeline;
      animation-duration: 1s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: forwards;
      animation-timing-function: linear;
      transform-origin: right;
    }
    
    section.appear nav ul li:nth-of-type(1){
      animation-name: lampeffect;
      animation-duration: .3s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    section.appear nav ul li:nth-of-type(3){
      animation-name: lampeffect;
      animation-duration: .4s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    section.appear nav ul li:nth-of-type(3){
      animation-name: lampeffect;
      animation-duration: .2s;
      animation-iteration-count: 1;
      animation-delay: .1s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    section.appear>ul{
      animation-name: lampeffect;
      animation-duration: .1s;
      animation-iteration-count: 4;
      animation-delay: .5s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    section.appear iframe{
      animation-name: lampeffect;
      animation-duration: .4s;
      animation-iteration-count: 1;
      animation-delay: .2s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
      /* navigatie animatie */
    nav.toonMenu ul li:nth-of-type(2n) a{
      animation-name: lampeffect;
      animation-duration: .2s;
      animation-iteration-count: 1;
      animation-delay: .5s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    nav.toonMenu ul li:nth-of-type(2n+1) a{
      animation-name: lampeffect;
      animation-duration: .2s;
      animation-iteration-count: 1;
      animation-delay: .3s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    



        /* ========================*/
        /*=  Algemeen commanden   =*/
        /* ========================*/
html, body {
  padding: 0;
  margin: 0;
  height: 100vh;
  position: relative;
}


body{
  background-color: var(--background-color);
  color: var(--font-color);

  cursor: default;
}

a{
  cursor: pointer;
}

main{
  position: relative;
  z-index: 0;
}


    /* to top button */
    /* ============= */
main>nav>a{
  position: fixed;
  right: 8%;
  bottom: 7.4em;

  text-decoration: none;

  width: 2em;
  height: 2em;
  padding: 0;
  margin: 0;
  border: solid .01em var(--font-color);

  background-color: var(--button-background-color);
  outline: none;

  cursor: pointer;
  scroll-behavior: smooth;
}

main>nav>a::after{
  content: "^";
  display: block;
  margin: 0;
  font-size: 2em;
  color: var(--font-color);
  transform: scaleX(1.2);

  position: absolute;
  top: 10%;
  left: 25%;
}

main>nav>a:hover{
  box-shadow: 0 0 .1em .1em var(--accent-color);
}

main>nav>a:hover::after{
  color: var(--accent-color);
}

main>nav>a:focus{
  box-shadow: 0 0 .1em .1em var(--accent-color);
}

main>nav>a:focus::after{
  color: var(--accent-color);
}


        /* ===============================*/
        /*=  header algemeen commanden   =*/
        /* ===============================*/

header{
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1{
  margin: 0;

  position: fixed;
  left: 2%;
  top: 4%;
  z-index: 1;
}

header h1 a{
  outline: none;
}

header h1 a img{
  width: 35%;
}

header h1 a:hover img{
  /* white color */
  filter: invert(100%) 
  sepia(100%) 
  saturate(0%) 
  hue-rotate(288deg) 
  brightness(105%) 
  contrast(103%);
}

header h1 a:active img{
  filter: none;

  box-shadow: inset 0 0 .2em 1.3em var(--font-color),
  0 0 .2em .1em var(--font-color);
}

header h1 a:focus img{
  outline-style: solid;
  outline-color: var(--accent-color);

  /* white color */
  filter: invert(100%) 
  sepia(100%) 
  saturate(0%) 
  hue-rotate(288deg) 
  brightness(105%) 
  contrast(103%);
}


/* Ik heb dit bij de "@media" boven in het bestand geztt,
maar hij heeft niet gewerkt.
Dus heb ik hem naar hier geplaatst */
@media (prefers-color-scheme: light){
  header h1 a:focus img{
    filter:brightness(0%);
  }
}

    /* image cover  */
header>img{
  width: 66%;
  margin: 0;

  transition: .5s;
  opacity: 0;
}






        /* ==========================*/
        /*=   navigatie commanden   =*/
        /* ==========================*/

    /* navigatie knop*/
header button{
  background-color: transparent;
  border: none;

  position: fixed;
  right: 2%;
  top: 1.5%;

  height: 2em;
  width: 2em; 

  padding: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-around;

  cursor: pointer;
  outline: none;

  z-index: 200;
}

header button span{
	width: 100%;
  height: .1em;
	background-color:var(--font-color);
	
	position: absolute;

	transition:.7s;
}

header button span:nth-of-type(1) {
  transform:translatey(-.6em);
}

header button span:nth-of-type(3) {
	transform:translatey(.6em);
}

header button.veranderen span:nth-of-type(1) {
	transform:rotate(45deg);
}

header button.veranderen span:nth-of-type(2) {
	opacity:0;
}

header button.veranderen span:nth-of-type(3) {
	transform:rotate(-45deg);
}



header button:hover span{
  background-color: var(--accent-color);
}

header button:active span{
  filter: drop-shadow(0 0 .1em var(--font-color) );
  background-color: var(--accent-color);
  transition: .1s;
}


header button:focus{
  outline-color: var(--accent-color);
  outline-style: solid;
}



    /* navigatie slid */
    /* ============== */

header nav{
  padding: 4em 15% ;
  margin: 0;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;

  background-image: url(../images/logo_yoasobi_menu.png);
  background-repeat: no-repeat;
  background-color: var(--background-color);
  background-size: contain;

  transform: translatex(-100%);
  transition:0.5s; 
}

header nav>p{
  font-family: var(--font-hoofd);
  margin: 0;
  position: absolute;
  bottom: .5em;

  left: 18%;
  pointer-events: none;
}

header nav ul{
  list-style: none;
}

.toonMenu{
  transform: translatex(0%);
}


    /* list 1 */

header nav ul:first-of-type{
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow-x: hidden;
}

header nav ul:first-of-type li a{
  font-family: var(--font-hoofd);
  font-size: 4vh;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;

  color: var(--font-color);

  position: relative;

  outline: none;
}

header nav ul li a:hover{
  color:var(--accent-color);
}

header nav ul li a::after{
  filter: drop-shadow(0 0 .1em var(--accent-color));
  color: var(--font-color);
  transform: scaleX(1);
}

header nav ul:first-of-type li a::after{
  content: "";
  background-color:currentcolor;

  margin-left: 1em;

  position:absolute;
  top: 50%;
  bottom: 50%;

  width: 20em;
  height: .08em;

  transform-origin: left;
  transform: scaleX(0);
  transition:.3s;
}

header nav ul li a:active{
  filter: drop-shadow(0 0 .2em var(--accent-color));
  color: var(--font-color);
  transition: 1s;
}

header nav ul li a:active::after{
  background-color: var(--font-color);
  transform: scaleX(1);
}

header nav ul:first-of-type li a:hover::after {
  background-color: var(--accent-color);
  filter: none;
  transform: scaleX(1);
}

header nav ul li a:visited{
  filter: drop-shadow(0 0 .1em var(--font-color) );
}

header nav ul li a:visited::after{
  background-color: var(--accent-color);
  transform: scaleX(1);
}

header nav ul li a:focus{
  color: var(--accent-color);
}

header nav ul li a:focus::after{
  background-color: var(--accent-color);
  filter: none;
  transform: scaleX(1);
}


header nav ul li a:focus::before{
  content: "•";
  font-family: inherit;
  color: var(--accent-color);

  position: absolute;
  left: -.5em;
}


    /* list 2 social media icons */

header nav ul:last-of-type{
  width: 18em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul:last-of-type li a img{
  display: block;
  width: 4em;
  margin: 0;
}

header nav ul:last-of-type li a:hover img{
  /* Ik heb dit filter via een youtube video gehaald
  youtube video: https://youtu.be/Ni49a8gZQxY
  Codepen: https://codepen.io/sosuke/pen/Pjoqqp 
  niet vragen alsjeblieft */

   /* red color */
  filter: 
  invert(63%) 
  sepia(59%) 
  saturate(5108%) 
  hue-rotate(329deg) 
  brightness(101%) 
  contrast(101%);

  outline-style: solid;
}

header nav ul:last-of-type li a:focus img{
  /* Ik heb dit filter via een youtube video gehaald
  youtube video: https://youtu.be/Ni49a8gZQxY
  Codepen: https://codepen.io/sosuke/pen/Pjoqqp 
  niet vragen alsjeblieft */

   /* red color */
  filter: 
  invert(63%) 
  sepia(59%) 
  saturate(5108%) 
  hue-rotate(329deg) 
  brightness(101%) 
  contrast(101%);
}

header nav ul:last-of-type li a:active img{
  /* Ik heb dit filter via een youtube video gehaald
  youtube video: https://youtu.be/Ni49a8gZQxY
  Codepen: https://codepen.io/sosuke/pen/Pjoqqp 
  niet vragen alsjeblieft */

   /* red color */
  filter: 
  invert(63%) 
  sepia(59%) 
  saturate(5108%) 
  hue-rotate(329deg) 
  brightness(101%) 
  contrast(101%);

  transform: scale(.8);
}






        /* =============================*/
        /*=  header section commands   =*/
        /* =============================*/
header section{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 66%;
  gap: 1.5em;
  padding-top: 3.5em;
}

header section h2{
  font-family: var(--font-hoofd);
  text-transform: uppercase;
  font-weight: 100;
  font-size: 2.1em;
  letter-spacing: .2em;
  transform: scale(1, 1.5);
  margin: 0;
}


header section div{
  height: 2.5em;
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
}

    /* horizontal lines */
header section div span:nth-of-type(1),
header section div span:nth-of-type(2),
header section div span:nth-of-type(3),
header section div span:nth-of-type(4),
header section div span:nth-of-type(5){
  background-color: var(--font-color);
  height: .01em;
}

header section div span:nth-of-type(1){
  width: 98%;
}

header section div span:nth-of-type(2){
  width: 95%;
}

header section div span:nth-of-type(3){
  width: 100%;
}

header section div span:nth-of-type(4){
  width: 96%;
  height: .09em;
}

header section div span:nth-of-type(5){
  width: 98%;
  height: .09em;
}


    /* vertical lines */
header section div span:nth-of-type(6),
header section div span:nth-of-type(7),
header section div span:nth-of-type(8),
header section div span:nth-of-type(9),
header section div span:nth-of-type(10){
  position: absolute;
  background-color: var(--font-color);
  height: 2.5em;
  width: .05em;
}

header section div span:nth-of-type(6){
  position: absolute;
  left: 3%;
}

header section div span:nth-of-type(7){
  position: absolute;
  left: 20%;
}

header section div span:nth-of-type(8){
  position: absolute;
  left: 40%;
}

header section div span:nth-of-type(9){
  position: absolute;
  left: 60%;
}

header section div span:nth-of-type(10){
  position: absolute;
  left: 80%;
}





        /* ========================*/
        /*=    footer commanden   =*/
        /* ========================*/
footer{
  background-color: var(--footer-background-color);
  position: absolute;
  right: 0;
  left: 0;
  height: 4em;
  margin-top: 20%;
}

footer p{
  font-family: var(--font-hoofd);
  font-size: .75em;
  padding-top: 1em;
  text-align: center;
}





        /* ===========================*/
        /*=  main algemeen commands  =*/
        /* ===========================*/

main{
  max-width: 100%;
}

main h3{
  font-family: var(--font-hoofd);
  font-size: 1.7em;
  font-weight: lighter;
  transform: scale(1, 1.3);
  letter-spacing: .01em;

  margin-bottom: 1%;
}

main section{
  position: relative;
}

main section p{
  font-family: var(--font-hoofd);
  font-size: 1em;

  margin: 0;
  line-height: 1.75;
  word-wrap: break-word;
}

main section:nth-of-type(1).Weg{
  display: none;
}


        /* =====================================*/
        /*=  main sections algemeen commands  =*/
        /* =====================================*/

main section:nth-of-type(n+1){
  display: grid;
  grid-template-columns: 19% 1fr 1fr 1fr 1fr  19%;
  column-gap: 1.3em;
  margin-top: 10%;
  margin-bottom: 10%;
} 

main section p{
  font-size: 1em;
  line-height: 1.6em;
}





        /* ========================*/
        /*=  section 1  commands  =*/
        /* ========================*/

main section:nth-of-type(1) h3{
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 1;

  text-transform: uppercase;
}

main section:nth-of-type(1) p{
  grid-column-start: 2; 
  grid-column-end: -2;
  letter-spacing: 0;
}





        /* ========================*/
        /*=  section 2  commands  =*/
        /* ========================*/

main section:nth-of-type(2) h3{
  grid-column-start: 4;
  grid-column-end: 4;
  grid-row-start: 1;

  margin: 0;
}

main section:nth-of-type(2) p:first-of-type{
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 2;

  margin-top: .5em;
  margin-bottom: 1em;
} 

main section:nth-of-type(2)>p:last-of-type{
  margin: 0;
  padding-left: 1.2em;

  border-left: solid var(--accent-color) .1em;

  grid-column-start: 4;
  grid-column-end: 6;

  grid-row-start: 3;
}

main section:nth-of-type(2)>img{
  width: 100%;

  grid-column-start: 2;
  grid-column-end: 4;

  grid-row-start: 1;
  grid-row-end: 4;
}

main section:nth-of-type(2) nav{
  grid-column-start: 5;
  grid-row-start: 1;
  width: 80%;
  margin-left: 20%;
}

main section:nth-of-type(2) nav ul{
  display: flex;
  justify-content: space-between;
  align-items: center;

  list-style: none;
  margin: 0;
  padding: 0;
}

main section:nth-of-type(2)  nav ul li a img{
  width: 2em;
}

main section nav ul li a:focus img{
  /* Ik heb dit filter via een youtube video gehaald
  youtube video: https://youtu.be/Ni49a8gZQxY
  Codepen: https://codepen.io/sosuke/pen/Pjoqqp 
  niet vragen alsjeblieft */

   /* red color */
  filter: 
  invert(63%) 
  sepia(59%) 
  saturate(5108%) 
  hue-rotate(329deg) 
  brightness(101%) 
  contrast(101%);
}

main section nav ul li a:hover img{
  /* Ik heb dit filter via een youtube video gehaald
  youtube video: https://youtu.be/Ni49a8gZQxY
  Codepen: https://codepen.io/sosuke/pen/Pjoqqp 
  niet vragen alsjeblieft */

  /* red color */
  filter: 
  invert(63%) 
  sepia(59%) 
  saturate(5108%) 
  hue-rotate(329deg) 
  brightness(101%) 
  contrast(101%);
}

main section nav ul li a:visited img{
  filter: drop-shadow(0 0 .3em var(--accent-color) );
  transform: scale(.9);
}

main section nav ul li a:active img{
  filter: drop-shadow(0 0 .3em var(--accent-color) );
  transform: scale(.9);
}




        /* ========================*/
        /*=  section 3  commands  =*/
        /* ========================*/
main section:nth-of-type(3) h3{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;

  margin: 0;
}

main section:nth-of-type(3) p:first-of-type{
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 2;

  margin-top: .5em;
  margin-bottom: 1em;
} 

main section:nth-of-type(3) p:last-of-type{
  margin:0;
  padding-left: 1.5em;

  border-left: solid var(--accent-color) .1em;

  grid-column-start: 2;
  grid-column-end: 4;
}

main section:nth-of-type(3)>img{
  width: 100%;

  grid-column-start: 4;
  grid-column-end: 6;

  grid-row-start: 1;
  grid-row-end: 4;
}

main section:nth-of-type(3) nav{
  grid-column-start: 3;
  grid-column-end: 3;
  grid-row-start: 1;
  
  width: 80%;
  margin-left: 20%;
}

main section:nth-of-type(3) nav ul{
  display: flex;
  justify-content: space-between;
  align-items: center;

  list-style: none;
  margin:0;
  padding: 0;
}

main section:nth-of-type(3) nav ul li a img{
  width: 2em;
}



































      /* =================================*/
      /*=  home kleiner scherm commands  =*/
      /* =================================*/


      /* ipad scherm */
      /* ============*/
@media(max-width: 59em){

    /* =================================*/
    /*= home header algemeen commands  =*/
    /* =================================*/
  header h1 a img{
    width: 25%;
  }

  header img{
    width: 100%;
    margin: 0;
  }

  header section{
    width: 100%;
    transition: .5s;
  }


    /* ================================*/
    /*= home header section commands  =*/
    /* ================================*/

  header section div span:nth-of-type(9),
  header section div span:nth-of-type(10){
    display: none;
    padding: 0 5%;
  }


    /* =========================================*/
    /*=  home main sections algemeen commands  =*/
    /* =========================================*/

  main section:nth-of-type(n+1){
    display: grid;
    grid-template-columns:3% 1fr 1fr 1fr 1fr 3%;
    gap: 1.5em;
    margin-top: 4em;
  } 

    /* =====================================*/
    /*= home main sections 2 + 3 commands  =*/
    /* =====================================*/
  main section:nth-of-type(2) p:first-of-type,
  main section:nth-of-type(3) p:first-of-type{
    margin-top: -1.5em;

    font-size: .75em;
  } 
   
  main section:nth-of-type(2) p:last-of-type,
  main section:nth-of-type(3) p:last-of-type{
    margin-top: -1.5em;
  } 
}
  

      /* iphone 6/7/8 plus scherm */
      /* =========================*/
@media(max-width: 26em){

  /* =============================*/
  /*=  header algemeen commands  =*/
  /* =============================*/
  
  header h1{
    position: fixed;
    left: 4%;
    top: .5%;
  }

  header h1 a img{
    width: 20%;
  }

  header nav>p{
    font-size: .7em ;
  }

    /* =============================*/
    /*=  header section commands   =*/
    /* =============================*/
  header section{
    width: 90%;
    gap: .5em;

    padding-top: 3em;
  }
  
  header section h2{
    font-weight: 300;
    font-size: 2.1em;
    letter-spacing: .1em;
    transform: scale(1, 1.4);
  }

  header section div{
    height: 2em;
    width: 85%;

    position: relative;
  }

  /* vertical lines */
  header section div span:nth-of-type(6),
  header section div span:nth-of-type(7){
    position: absolute;
    background-color: var(--font-color);
    height: 2em;
    width: .05em;
  }

  header section div span:nth-of-type(6){
    position: absolute;
    left: 10%;
  }

  header section div span:nth-of-type(7){
    position: absolute;
    left: 60%;
  }

  header section div span:nth-of-type(8){
    display: none;
  }



    /* ====================================*/
    /*=  main sections algemeen commands  =*/
    /* ====================================*/

  
  main section:nth-of-type(n+1){
    display: grid;
    grid-template-columns:3% 1fr 1fr 1fr 1fr 3%;
    column-gap: 1em;
    row-gap: 1.5em;
    margin-top: 8em;
  } 

  main section:nth-of-type(1){
    margin-top: 1em;
  }

  main section:nth-of-type(2) h3,
  main section:nth-of-type(3) h3{
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    margin: 0;
    margin-bottom: .3em;
  }

  main section:nth-of-type(2) p:first-of-type,
  main section:nth-of-type(3) p:first-of-type{
    margin-top: -1.5em;
    grid-column-start: 2;
    grid-column-end: -2;
    grid-row-start: 3;

    font-size: .75em;
  }

  main section:nth-of-type(2) p:last-of-type,
  main section:nth-of-type(3) p:last-of-type{
    grid-column-start: 2;
    grid-column-end: -2;
    grid-row-start: 4;
  } 

  main section:nth-of-type(2) img,
  main section:nth-of-type(3) img{
    width: 100%;

    grid-column-start: 2;
    grid-column-end: -2;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  main section:nth-of-type(2) nav,
  main section:nth-of-type(3) nav{
    grid-column-start: 2;
    grid-column-end: -2;
    grid-row-start: 5;

    width: 100%;


    margin: 0;
    padding: 0;
  }

  main section:nth-of-type(2) nav ul,
  main section:nth-of-type(3) nav ul{
    padding: 0 4em;
    gap: 1em;
  }

  main section:nth-of-type(2) nav ul li a img,
  main section:nth-of-type(3) nav ul li a img{
    width: 3em;
  } 
}




















































































    /* ******************************** */
    /* ******************************** */
    /*=  Songs / Novels page commands  =*/
    /* ******************************** */
    /* ******************************** */


/* =================== */
/*=  header commands  =*/
/* =================== */

.songsPage header section h2{
  font-size: 1.8em;
  letter-spacing: 0.1em;
}

.songsPage header section div{
  width: 15%;
}

.songsPage header section div span:nth-of-type(1){
  width: 75%;
}

.songsPage header section div span:nth-of-type(2){
  width: 50%;
}

.songsPage header section div span:nth-of-type(3){
  width: 100%;
}

.songsPage header section div span:nth-of-type(4){
  width: 60%;
}

.songsPage header section div span:nth-of-type(5){
  width: 70%;
}

.songsPage header section div span:nth-of-type(6),
.songsPage header section div span:nth-of-type(7){
  display:none;
}




    /* ================= */
    /*=  main commands  =*/
    /* ================= */

    /* Taal navigatie */
    /* ============== */
.songsPage main>nav:first-child{
  margin: 0;
  margin-top: 2em;

  display: flex;
  justify-content: center;
}

.songsPage main>nav:first-child ul{
  list-style: none;
  width: fit-content;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3em;

  padding: 0;

  position: relative;
}

.songsPage main>nav:first-child ul li:nth-of-type(1) a{
  font-family: var(--font-hoofd);
  font-size: 1.1em;
  color: var(--footer-color);
  text-decoration: none;
  margin: 0;
}

.songsPage main>nav:first-child ul li:first-of-type:after{
  content: "|";
  transform: scaleY(2);
  color: var(--font-color);


  position: absolute;
  right: 56%;
}

.songsPage main>nav:first-child ul li:last-of-type a{
  color: var(--accent-color);
  font-weight: bold;
}

.songsPage main>nav:first-child ul li a{
  outline: none;
}

.songsPage main>nav:first-child ul li a:hover{
  color: var(--accent-color);
}

.songsPage main>nav:first-child ul li a:hover{
  color: var(--accent-color);
}

.songsPage main>nav:first-child ul li a:focus{
  color: var(--font-color);
  box-shadow: 0 0 .1em .1em var(--accent-color);
}

.songsPage main>nav:first-child ul li a:active{
  text-decoration: underline;
}

.songsPage main section nav ul li a:hover img,
.songsPage main section nav ul li a:focus img {
  filter: none;
}





        /* ========================== */
        /*=  main sections commands  =*/
        /* ========================== */
.songsPage main section:nth-of-type(n+1){
  display: grid;
  grid-template-columns:3% 1fr 1fr 3%;
  gap: 1em;
} 

.songsPage main section h3{
  font-size: 1.2em;
  text-transform: capitalize;
  letter-spacing: .1em;

  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 1;

  margin:0;

  overflow-x: hidden;
}

.songsPage main section h3::after{
content: "";

width: 75%;
height: .1em;
background-color: var(--accent-color);

position: absolute;
top: 50%;
right: 0;

z-index: -1;
transform:scalex(0);
}

.songsPage main section:nth-of-type(1) h3::after{
  width: 48%;
}

.songsPage main .afterLine::after{
  width: 55%;
}


        /* section navigatie (images) */
        /* ========================== */
.songsPage main section nav {
  margin: 0;

  width: 100%;
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 2;
}

.songsPage main section nav ul{
  list-style: none;
  margin: 0;
  padding: 0;

  grid-column-start: 2;
  grid-column-end: 4;

  display: flex;
  gap: 1em;
}

.songsPage main section nav ul li{
  width: 100%;
  margin: 0;
}

.songsPage main section nav ul li p{
  text-transform: uppercase;
  font-size: 1em;

  border: none;
  padding: 0;
}

.songsPage main section nav ul li a{
  position: relative;
  margin: 0;

  display: block;
  overflow: hidden;
}

.songsPage main section nav ul li a img{
  width: 100%;
  display: block;
  transition: .8s;
}


.songsPage main section nav ul li a:hover,
.songsPage main section nav ul li a:focus{
  filter: none;
}

.songsPage main section nav ul li a:hover img,
.songsPage main section nav ul li a:focus img{
  transform: scale(1.06);
}

.songsPage main section nav ul li a:active img{
  box-shadow: 
  0 0 .1em .1em var(--font-color),
  0 0 .2em .2em var(--accent-color);
}

.songsPage main section nav ul li a:focus{
  box-shadow: 
  0 0 .1em .1em var(--font-color),
  0 0 .2em .2em var(--accent-color);
}

.songsPage main section nav ul li a span{
  width: 2em;
  height: 1.5em;
  background-color: white;
  color: var(--accent-color);

  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding-top: .5em;
  font-size: 1.5em;
  font-weight: bolder;

  position: absolute;
  right: 0;
  bottom: 0;
}
 

.songsPage main section nav ul li a:hover span,
.songsPage main section nav ul li a:focus span{
  background-color: var(--accent-color);
  color: var(--font-color);
}

.songsPage main section nav ul li a:active span{
  background-color: var(--font-color);
  color: var(--accent-color);
}



.songsPage main section nav ul li:nth-of-type(1){
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

.songsPage main section nav ul li:nth-of-type(2){
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;
} 



    /* youtube video */
    /* ============= */
.songsPage main section iframe{
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 3;
  grid-row-end: 4;

  width: 100%;
  height: 17em;

  border: none;
}


    /* info list */
    /* ========= */

.songsPage main section>ul{
  margin: 0;
  list-style: none;
  padding: 0;

  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 4;
  grid-row-end: 5;
} 

.songsPage main section>ul li{
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 1em;
}

.songsPage main section>ul li p:first-of-type{
  grid-column-start: 1;
  grid-column-end: 2;
}


.songsPage main section>ul li p:last-of-type{
  grid-column-start: 2;
  grid-column-end: -1;

  text-transform: capitalize;

  inline-size: 100%;
  overflow-wrap: break-word;
}

.songsPage main section>ul li p:last-of-type::before{
  content: ":";
  color: var(--font-color);
}

.songsPage main>nav{
  display: flex;

  justify-content: center;
}

.songsPage main section:nth-of-type(2) p,
.songsPage main section:nth-of-type(3) p{
  margin-top: 0;
  margin-bottom: 0;
  grid-row-start: 1;
}

.songsPage section:nth-of-type(3) p:last-of-type{
  border:none;
  padding: 0;
}

      /* #2 nav 1 2 3 */
.songsPage main>nav ul{
  padding: 0;
  margin-top: 5%;

  width: 7em;
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.songsPage main>nav ul li a{
  text-decoration: none;
  color: var(--font-color);
  font-family: var(--font-hoofd);
  font-size: 1.3em;
}
.songsPage main>nav ul li a:hover{
  color: var(--accent-color);
}

.songsPage main>nav ul li a:active{
  font-size: 1em;
}
.songsPage main>nav ul li a.active{
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: underline;
  color: var(--accent-color);
}




























































      /* ==========================================*/
      /*=  songsandnovels groter scherm commands  =*/
      /* ==========================================*/

@media(min-width: 48em){

    /* =================== */
    /*=  header commands  =*/
    /* =================== */
  .songsPage header section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 66%;
    gap: 1em;
    padding-top: 3.5em;
  }
  .songsPage header section h2{
    font-size: 2em;
  }

  .songsPage header section div{
    width: 60%;
    position: relative;
  }

    /* horizontal lines */
  .songsPage header section div span:nth-of-type(1){
  width: 98%;
  }

  .songsPage header section div span:nth-of-type(2){
  width: 95%;
  }

  .songsPage header section div span:nth-of-type(3){
  width: 100%;
  }

  .songsPage header section div span:nth-of-type(4){
  width: 96%;
  height: .09em;
  }

  .songsPage header section div span:nth-of-type(5){
  width: 98%;
  height: .09em;
  }

    /* vertical lines */
  .songsPage header section div span:nth-of-type(6){
    display: inline;
    position: absolute;
    left: 6%;
  }
  
  .songsPage header section div span:nth-of-type(7){
    display: inline;
    position: absolute;
    left: 30%;
  }
  
  .songsPage header section div span:nth-of-type(8){
    position: absolute;
    left: 55%;
  }
  
  .songsPage header section div span:nth-of-type(9){
    position: absolute;
    left: 80%;
  }





    /* ========================== */
    /*=  main sections commands  =*/
    /* ========================== */
  .songsPage main section:nth-of-type(n+1){
    margin-bottom: 25em;
    display: grid;
    grid-template-columns: 13% 1fr 1fr 1fr 13%;
    grid-template-rows: auto;
    column-gap: 2.5em;
    margin-top: 4em;
  }  
  
  
  .songsPage main section h3{
    font-size: 1.7em;
  
    display: flex;
    justify-content: center;
  
    align-self: center;
    margin-bottom: 2em;

    overflow: hidden;
  }

  .songsPage main section h3::after,
  .songsPage main section h3::before{
  content: "";
  width:35%;
  height: .1em;
  background-color: var(--accent-color);
  top: 50%;
  }

  .songsPage main .afterLine::after,
  .songsPage main section:nth-of-type(1) h3::after{
    width: 35%;
  }

  .songsPage main section h3::after{
  position: absolute;
  right: -.2em;
  }

  .songsPage main section h3::before{
  position: absolute;
  left: -.2em;
  transform: scaleX(0);
  }
  
  .songsPage main section p{
    text-transform: uppercase;
    font-size: 1.5em;
  }
  
      /* navigatie */
      /* ========= */
  .songsPage main section nav{
    margin: 0;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 4;
  }
  
  .songsPage main section nav ul{
    display: flex;
    gap: 2.5em;
  } 
  
  
  .songsPage main section nav ul li p{
    font-size: 1.5em;
  }

  .songsPage main section nav ul li a{
    display: block;
  }

  .songsPage main section nav ul li a img{
    display: block;
  }
  
  .songsPage main section nav ul li:nth-of-type(1){
    grid-column-start: 1;
    grid-column-end: 2;
  }
  
  .songsPage main section nav ul li:nth-of-type(2){
    grid-column-start: 2;
    grid-column-end: 3;
  }

  .songsPage main section:nth-of-type(2) nav,
  .songsPage main section:nth-of-type(3) nav{
    width: auto;
  }
    
    
        /* =============================== */
        /*=  sections info list commands  =*/
        /* =============================== */
    
  .songsPage main section>ul{
    margin: 0;
    width: 100%;
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 4;
    row-gap: .3em;
  }
  
   
  .songsPage main section>ul li{
    display: grid;
    grid-template-columns: 45% 55%;

  }

  .songsPage main section>ul li p{
    font-size: 1em;
  }

  .songsPage main section>ul li p:first-of-type{
    grid-column-start: 1;
    grid-row-start: 1;

    margin:0;
  }

  .songsPage main section>ul li p:last-of-type{
    grid-column-start: 2;
    grid-column-end: 3;

    inline-size: 100%;
    overflow-wrap: break-word;
  }

  .songsPage main section iframe{
    width: 75%;
    height: 26em;
    grid-row-start: 5;
    justify-self: center;
  }
}
