html,
body {
  height: 100%;
  background: linear-gradient(144.19deg, #117cff 5.41%, #112dff 50%);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  width: 100%;
  height: auto;
}
.container {
  /* padding: 0 50px; */
}

.site-header {
  grid-area: h;
  /* background-color: aliceblue; */
}
.logo {
  text-align: center;
}
#logomask {
  fill: #1453ff;
}
.intro,
.site-footer {
  padding: 10px 10px;
}
.intro {
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 55px;
}
.texlink {
  position: relative;
  color: black;
  text-decoration: none;
  border-bottom: 4px dotted rgba(0, 0, 0, 0.5);
}
.poplink {
  display: none;
  width: 220px;
  height: 140px;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  transform: translateX(-50%);
  -webkit-box-shadow: 0px 6px 20px 0px rgb(0 0 0 / 40%);
  -moz-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 6px 20px 0px rgb(0 0 0 / 40%);
  background: white;
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  flex-direction: column;
  padding: 4px;
  justify-content: center;
}
.poplink img {
  display: block;
}
.pointing-finger {
  transform: rotate(90deg);
  z-index: -1;
}
/* .pointing-finger {
  max-width: 200px;
} */
.art {
  grid-area: a;
  background-color: #13233a;
  overflow: hidden;
}
ul,
li {
  padding: 0;
}
li {
  list-style: none;
  line-height: 1.3;
}
.listheader {
  font-weight: bold;
}
.list-photo {
  background: url(../img/foto.png) no-repeat;
  background-size: 50px;
  padding: 10px 0 50px 60px;
  margin: 0 0 -50px -60px;
}
.icon-mail {
  background: url(../img/icon-mail.svg) no-repeat;
  background-size: 30px;
  padding: 0 0 50px 40px;
  margin: 0 0 -50px -40px;
}
.icon-tel {
  background: url(../img/icon-phone.svg) no-repeat;
  background-size: 30px;
  padding: 0 0 50px 40px;
  margin: 0 0 -50px -40px;
}
.logo svg {
  width: 160px;
}
.site-footer {
  padding-bottom: 50px;
}

.site-footer a {
  color: white;
  text-decoration: none;
}
/* The animation code */
@keyframes move {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

.artslider {
  height: 500px;
  width: 400%;

  transform: rotate(12deg);
  transform-origin: top right;
}
.artwork {
  background: url("../img/artslider.jpg");
  background-size: 733px auto; /*schaal terug naar 50% voor hi rez */
  height: 1000vh;

  transform: translateY(0);
  animation-name: move;
  animation-delay: 1s;
  animation-duration: 100s;
  /* animation-delay: 2s; */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  /* animation-direction: alternate; */
}

.site-footer {
  grid-area: f;
  display: flex;
  align-items: flex-end;
  color: white;
}

/*logo animatie*/
#path1 {
  stroke-dasharray: 319;
  stroke-dashoffset: 319;
}
#path2 {
  stroke-dasharray: 245;
  stroke-dashoffset: 245;
}
#path3 {
  stroke-dasharray: 341;
  stroke-dashoffset: 341;
}
#path4 {
  stroke-dasharray: 431;
  stroke-dashoffset: 431;
}
@keyframes dashoffsetPath {
  to {
    stroke-dashoffset: 0;
  }
}
#path1,
#path2,
#path3,
#path4 {
  animation: dashoffsetPath 0.7s 1s ease forwards;
}

@media only screen and (min-width: 768px) {
  #logomask {
    fill: #135dff;
  }
  .intro,
  .site-footer {
    padding: 10px 55px;
    margin-left: 100px;
  }

  .intro {
    margin-left: 99px;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .site-footer {
    padding-bottom: 0;
  }
  .pointing-finger {
    transform: none;
  }
  .container {
    height: 100%;
    display: grid;
    /* grid-gap: 3px; */
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "h h h h a a a"
      "f f f f a a a";
  }
  /* The animation code */
  @keyframes animateMask {
    0% {
      clip-path: polygon(0 0, 1% 0, 2% 6%, 3% 12%);
    }
    66% {
      clip-path: polygon(0 0, 1% 0, 18% 100%, 17% 100%);
    }
    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
    }
  }

  .art {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);

    animation-name: animateMask;
    animation-duration: 1s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    position: relative;
    left: 10px;
  }
  .artslider {
    height: auto;
  }
}
@media only screen and (min-width: 1000px) {
  .logo {
    position: absolute;
    top: 0;
    margin-left: 62px;
  }
  #logomask {
    fill: #156eff;
  }
}
