/*grid*/
.slides, .menu {
    grid-column: 2 / 6;
    grid-row: 2 / 3;
    
}
@media screen and (orientation: portrait) {
    .slides, .menu {
        grid-column: 1 / 7;
        grid-row: 2 / 5;
        }
}

.slides {
    z-index: -12;
}

.menu {
    background-image: none;
    background-color:transparent;
}

.menu a {
    color:var(--paars);
    font-weight: bold;
    text-decoration: none;
}

.menu li:nth-of-type(1) a {
    color:var(--paars);
    text-decoration: none;
    /*text-shadow: none;
    text-shadow: 
        -1px 0 var(--lichtpaars), 0 -1px var(--lichtpaars), -1px -1px var(--lichtpaars);*/
}
    
.menu li:nth-of-type(3) a {
/*color:rgb(246, 235, 16);*/
text-decoration: underline;
text-decoration-color: rgb(246, 235, 16);
text-decoration-thickness: 9px;
/*text-shadow: none;
text-shadow:
    1px 0 var(--paars), 0 1px var(--paars), 1px 1px var(--paars);*/
} 

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  /*background-color: #717171;*/
  background-color: var(--paars);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media screen and (orientation: portrait) {
  article {
    margin-top: 60px;
      }
}

article h1 {
    font-weight: bold;
    
}

.footerfa,
.footermenu,
.footerfab {
    margin-top: 18px;
}

.footermenu li:nth-of-type(1) {
    font-weight:normal;
}

.footeradres {
    margin-bottom: 18px;
}