body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(
    315deg,
    rgba(101, 0, 94, 1) 3%,
    rgba(60, 132, 206, 1) 38%,
    rgba(48, 238, 226, 1) 68%,
    rgba(255, 25, 25, 1) 98%
  );
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  width: 100vw;
  height: 80vh;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }

  25% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(-50%);
  }

  75% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(1);
  }
}

.slinger {
  top: 0px;
  width: 50vw;

  height: auto;
  /* position: absolute; */
}

.wijn {
  right: -25px;
  position: absolute;
  bottom: 0;
  width: 29%;
  transform: scaleX(-1);
}

.duim1 {
  transform: scaleX(-1);
  width: 35%;
  left: -10px;
  bottom: 0px;

  position: absolute;
}

.duim2 {
  width: 0%;
}

h1 {
  color: white;
  font-size: 3rem;
}

h2 {
  color: white;
  font-size: 2rem;
}

p {
  font-size: 2rem;
  color: #fff;
  /* text-
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000; */
}

a:link {
  color: rgb(41, 198, 255);
  background-color: transparent;
  text-decoration: underline;
}
a:visited {
  color: rgb(154, 152, 255);
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: rgb(231, 231, 231);
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

.container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.main-content {
  z-index: 0;
  margin: auto;
  text-align: center;
  padding: 0;
  width: 80%;
  height: 100%;
}

.card {
  height: 10%;
  width: 35%;

  position: absolute;
  text-align: center;

  border-radius: 7px;
  opacity: 0.95;
  background-color: red;
  /* border: 1px dashed whitesmoke; */

  z-index: 20;
  transition: all ease 1s;
  /* border: 7px solid white; */

  bottom: 0;
  right: 32.5%;
}

.extra,
.extra p {
  transition: all ease 1s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.4);
  /* border: 1px solid whitesmoke; */

  width: 40%;
  height: 60%;

  right: 30%;
}

.card:active > .content,
.card:active .extra,
.card:active .extra p {
  display: block;
}

.card:hover > .content,
.card:hover .extra,
.card:hover .extra p {
  display: block;
}

.title {
  align-items: center;
  align-content: center;
  line-height: 100%;
  transition: all ease 1s;
}

.hier {
  opacity: 0;
  transition: all ease 1s;
}

.waar {
  transition: all ease 1s;
}

.card:hover > .content > .title > .waar {
  opacity: 0;
  font-size: 0%;
  transition: all ease 1s;
}
.card:hover > .content > .title > .hier {
  opacity: 1;
  transition: all ease 1s;
}

@media (max-width: 1000px) {
  .slinger {
    top: 0px;
    width: 90vw;
    padding-bottom: 7%;
    height: auto;
    /* position: absolute; */
  }

  h1 {
    font-size: 55px;
  }

  p {
    font-size: 40px;
  }
  h2 {
    font-size: 50px;
  }
  .card {
    width: 95vw;
    height: 7rem;
    background-color: red;
    border-radius: 20px;

    position: absolute;
    right: 2.5vw;
  }

  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
    border: 1px solid whitesmoke;
    width: 95%;
    height: 55%;
    right: 2.5vw;
  }
  .duim2 {
    transform: scaleX(-1);
    width: 90%;
  }
  .duim1 {
    width: 0;
  }
  .wijn {
    width: 90%;
    margin-bottom: 0rem;
    z-index: -20;
    opacity: 0.8;
  }
  .container {
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    height: fit-content;
  }
  .waar {
    top: 1px;
  }
  .title {
    top: 1px;
  }
}
