body {
  background-color: black;
  color: #fff;
  margin: 0;
  padding: 0;
}

#indexSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100svh;
}

.centered-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#over-ons-title {
  font-family: "Archivo Black";
  font-size: 5vw;
  color: #000;
  position: relative;
}

#over-ons-title:before {
  content: "Over ons";
  position: absolute;
  color: #00000037;
  top: -0.4vw;
  left: 13vw;
  z-index: -1;
}

#over-ons-text {
  width: 50vw;
  font-size: 1.1vw;
}

#terug-button {
  font-family: "Montserrat";
  font-weight: 600;
  background-color: #000;
  color: #fff;
  padding: 1vw 2vw;
  margin: 2vw;
  border-radius: 0.5vw;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s;
  font-size: 1.4vw;
}

#terug-button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f053";
  margin: 0vw 0.5vw 0vw 0vw;
}

.jkw-logo {
  background-image: url(/assets/img/logos/jkw-logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 40vw;
  height: 10vw;
  margin-bottom: 2.5vw;
}

#startButton {
  font-family: "Archivo Black";
  background-color: #000;
  color: #fffc61;
  border: 0.1vw solid #fffc61;
  border-radius: 0.3vw;
  padding: 0.95vw 6vw;
  font-size: 1.5vw;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0.5vw -0.4vw rgb(0, 0, 0), 0.5vw -0.4vw 0vw 0.1vw #fffc61;
  transition: 0.3s;
}

#startButton:hover {
  box-shadow: 0vw -0vw rgb(0, 0, 0), 0vw -0vw 0vw 0vw #fffc61;
  transform: scale(1.08);
  transition: 0.3s;
}

#startButton:active {
  box-shadow: 0.5vw -0.4vw rgb(0, 0, 0), 0.5vw -0.4vw 0vw 0.1vw #fffc61;
  transform: scale(0.9);
  transition: 0.3s;
}

.middle-left-alignment {
  position: absolute;
  bottom: 8vw;
  left: 0vw;
}

.middle-left-icon {
  background: url(/assets/img/logos/jkw-ico-left.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 6vw;
  height: 16vw;
  margin-bottom: 2.5vw;
  opacity: 0.3;
  animation: bounceUp 5s ease-in-out infinite;
}

.middle-right-alignment {
  position: absolute;
  top: 8vw;
  right: 0vw;
}

.middle-right-icon {
  background: url(/assets/img/logos/jkw-ico-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 6vw;
  height: 16vw;
  margin-top: 2.5vw;
  opacity: 0.3;
  animation: bounceDown 5s ease-in-out infinite;
}

@keyframes bounceUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2.5vw);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bounceDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2.5vw);
  }
  100% {
    transform: translateY(0);
  }
}

.top-left-alignment {
  text-align: left;
  position: absolute;
  top: 1vw;
  left: 1vw;
}

.top-left-corner {
  display: inline-block;
  border-top: solid 0.2vw #555;
  border-left: solid 0.23vw #555;
  height: 9vw;
  width: 8vw;
}

.top-right-alignment {
  text-align: left;
  position: absolute;
  top: 1vw;
  right: 1vw;
}

.top-right-corner {
  display: inline-block;
  border-top: solid 0.2vw #555;
  border-right: solid 0.23vw #555;
  height: 9vw;
  width: 8vw;
}

.bottom-left-alignment {
  text-align: right;
  position: absolute;
  bottom: 1vw;
  left: 1vw;
}

.bottom-left-corner {
  display: inline-block;
  border-bottom: solid 0.2vw #555;
  border-left: solid 0.23vw #555;
  height: 9vw;
  width: 8vw;
}

.bottom-right-alignment {
  text-align: right;
  position: absolute;
  bottom: 1vw;
  right: 1vw;
}

.bottom-right-corner {
  display: inline-block;
  border-bottom: solid 0.2vw #555;
  border-right: solid 0.23vw #555;
  height: 9vw;
  width: 8vw;
}

.page-transition-page-a {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #fffc61;
  z-index: 9999;
  animation: transition-page-a 0.6s forwards;
}

@keyframes transition-page-a {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.page-transition-page-b {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fffc61;
  z-index: 9999;
  animation: transition-page-b 0.6s forwards;
}

@keyframes transition-page-b {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}

.footer-front-mobile-list {
  list-style-type: none;
  display: none;
  list-style: none;
}
.footer-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff23;
  color: #fff;
  width: 4.5vw;
  text-align: center;
  font-size: 1.8vw;
  border-radius: 0.5vw 0.5vw 0px 0px;
  cursor: pointer;
}
footer {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3.5vw;
  width: 100vw;
  z-index: 1;
}

.footer-modal {
  font-family: "Montserrat";
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 0;
  background-color: #fffc61;
  color: #000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  transition: height 0.3s ease-in-out;
  overflow-y: hidden;
}

.footer-modal-content {
  display: grid;
  grid-template-columns: 1fr;
  height: 100svh;
  text-align: center;
  font-size: 1vw;
}

.footer-modal-upper-half {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer-text-wrapper {
  font-family: "Archivo Black";
  font-size: 5vw;
  color: #000;
  position: relative;
}

.footer-front-text::before {
  content: "Bijdragen geleverd door:";
  position: absolute;
  color: #00000037;
  top: -0.4vw;
  left: 0vw;
  z-index: -1;
}

.footer-modal-content p {
  font-weight: 700;
  font-size: 1.1vw;
}

.footer-modal-lower-half-buttons {
  display: grid;
  grid-template-columns: 1fr;
}

.lower-half-buttons-first-row {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  justify-content: center;
  margin-bottom: 1vw;
}

.lower-half-buttons-first-row > button {
  width: 22vw;
  height: 4vw;
  border: 1px solid #000;
  background-color: #fffc61;
  border-radius: 0.3vw;
  transition: 0.3s;
  cursor: pointer;
}

.lower-half-buttons-second-row {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  justify-content: center;
}

.lower-half-buttons-second-row > button {
  width: 22vw;
  height: 4vw;
  border: 1px solid #000;
  background-color: #fffc61;
  border-radius: 0.3vw;
  transition: 0.3s;
  cursor: pointer;
}

.lower-half-buttons-first-row > button:hover {
  scale: 1.04;
  transition: 0.3s;
}

.lower-half-buttons-first-row > button:active {
  scale: 0.98;
  transition: 0.3s;
}

.lower-half-buttons-second-row > button:hover {
  scale: 1.04;
  transition: 0.3s;
}

.lower-half-buttons-second-row > button:active {
  scale: 0.98;
  transition: 0.3s;
}

.logo-izi {
  background: url(/assets/img/logos/logo-izi.png) center no-repeat;
  background-size: 13vw;
}

.logo-repr {
  background: url(/assets/img/logos/logo-repr.png) center no-repeat;
  background-size: 12.5vw;
}

.logo-wemagine {
  background: url(/assets/img/logos/logo-wemagine.png) center no-repeat;
  background-size: 12.5vw;
}

.logo-njr {
  background: url(/assets/img/logos/logo-njr.png) center no-repeat;
  background-size: 5.5vw;
}

.logo-fnv {
  background: url(/assets/img/logos/logo-fnv.png) center no-repeat;
  background-size: 3.5vw;
}

.footer-links {
  position: absolute;
  bottom: 1vw;
  left: 0;
  width: 100vw;
}

.footer-links a {
  text-decoration: none;
  color: #000000;
}

.footer-links a:nth-child(1):after {
  content: " -";
}
.footer-links a:nth-child(2):after {
  content: " -";
}

#closeModal {
  position: absolute;
  top: 0.5vw;
  right: 0.5vw;
  background-color: #000000;
  color: #fffc61;
  border: none;
  border-radius: 0.3vw;
  padding: 0.9vw 1.3vw;
  font-size: 1.4vw;
  cursor: pointer;
}

.over-ons-container {
  font-family: "Montserrat";
  border-radius: 1vw;
  width: 40vw;
  padding: 2vw;
  font-size: 1vw;
  text-align: center;
  background: #ffffff3c;
}

.logo-small {
  background: url(/assets/img/logos/jkw-logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20vw;
  height: 5vw;
  margin: 0 auto;
}

.back-button {
  font-family: "Montserrat";
  font-weight: 600;
  position: absolute;
  bottom: 0vw;
  left: 0vw;
  background-color: #ffffff23;
  color: #fff;
  padding: 0.8vw 1vw;
  border-radius: 0vw 0.5vw 0vw 0;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s;
}

.back-button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f053";
  margin: 0vw 0.5vw 0vw 0vw;
}

@media only screen and (max-width: 1024px) {
  .jkw-logo {
    width: 65.5vw;
    height: 16.5vw;
    margin-bottom: 5vw;
  }
  #startButton {
    padding: 1.5vw 10vw;
    font-size: 2.5vw;
    box-shadow: 1vw -1vw rgb(0, 0, 0), 1vw -1vw 0vw 0.2vw #fffc61;
  }
  #over-ons-title {
    font-family: "Archivo Black";
    font-size: 5vw;
    color: #000;
    position: relative;
    text-align: center;
    margin-left: 5vw;
    line-height: 0.9;
  }

  #over-ons-title:before {
    content: "Over ons";
    position: absolute;
    color: #00000037;
    top: -0.4vw;
    left: 28.3vw;
    z-index: -1;
  }

  #over-ons-text {
    width: 80vw;
    font-size: 1.5vw;
    text-align: center;
    margin: 2vw 0vw 0vw 5vw;
  }

  #terug-button {
    font-family: "Montserrat";
    font-weight: 600;
    background-color: #000;
    color: #fff;
    padding: 1.5vw 3vw;
    margin: 2vw;
    border-radius: 0.5vw;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
    font-size: 1.7vw;
    position: absolute;
    left: 45vw;
    border-radius: 1vw;
    border: none;
  }

  #terug-button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f053";
    margin: 0vw 0.5vw 0vw 0vw;
  }
}

@media only screen and (max-width: 850px) {
  footer {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 7.5vw;
    width: 100vw;
    z-index: 999;
  }
  .footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff23;
    color: #fff;
    width: 9.5vw;
    text-align: center;
    font-size: 4.5vw;
    border-radius: 1.5vw 1.5vw 0px 0px;
    cursor: pointer;
  }
  .footer-modal-upper-half {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    width: 90px;
  }

  .footer-front-mobile-list-container {
    margin-left: 5vw;
    text-align: left;
  }

  .footer-front-text {
    display: none;
  }

  .footer-front-mobile-list li:nth-child(1):before {
    content: "Bijdragen";
    position: absolute;
    color: #0000002f;
    top: -0.6vw;
    left: 5.8vw;
    z-index: -1;
  }
  .footer-front-mobile-list li:nth-child(2):before {
    content: "geleverd";
    position: absolute;
    color: #0000002f;
    top: 7.2vw;
    left: 6vw;
    z-index: -1;
  }
  .footer-front-mobile-list li:nth-child(3):before {
    content: "door:";
    position: absolute;
    color: #0000002f;
    top: 14.9vw;
    left: 5.8vw;
    z-index: -1;
  }

  .footer-front-mobile-list {
    display: contents;
    font-size: 7vw;
    line-height: 1.1;
  }

  .lower-half-buttons-first-row {
    display: flex;
    flex-direction: column;
    margin-left: 5vw;
    gap: 2.3vw;
    margin-top: 1vw;
  }

  .lower-half-buttons-first-row > button {
    width: 40vw;
    height: 8vw;
    border: 1px solid #000;
    background-color: #fffc61;
    border-radius: 0.7vw;
  }

  .lower-half-buttons-second-row {
    display: flex;
    flex-direction: column;
    margin-left: 5vw;
    gap: 2.3vw;
    margin-top: 1vw;
  }

  .lower-half-buttons-second-row > button {
    width: 40vw;
    height: 8vw;
    border: 1px solid #000;
    background-color: #fffc61;
    border-radius: 0.7vw;
  }

  .logo-izi {
    background: url(/assets/img/logos/logo-izi.png) center no-repeat;
    background-size: 22vw;
  }

  .logo-repr {
    background: url(/assets/img/logos/logo-repr.png) center no-repeat;
    background-size: 22vw;
  }

  .logo-wemagine {
    background: url(/assets/img/logos/logo-wemagine.png) center no-repeat;
    background-size: 20vw;
  }

  .logo-njr {
    background: url(/assets/img/logos/logo-njr.png) center no-repeat;
    background-size: 10vw;
  }

  .logo-fnv {
    background: url(/assets/img/logos/logo-fnv.png) center no-repeat;
    background-size: 7vw;
  }
  .again-button {
    font-weight: 600;
    position: absolute;
    bottom: 0vw;
    right: 0vw;
    background-color: #ffffff23;
    color: #fff;
    padding: 1.5vw 2.5vw;
    border-radius: 0vw 2vw 0vw 0;
    font-size: 2.2vw;
    z-index: 2;
    cursor: pointer;
  }
  #over-ons-title {
    font-family: "Archivo Black";
    font-size: 8vw;
    color: #000;
    position: relative;
    text-align: left;
    margin-left: 5vw;
    line-height: 0.9;
  }

  #over-ons-title:before {
    content: "Over ons";
    position: absolute;
    color: #00000037;
    top: -0.7vw;
    left: 1vw;
    z-index: -1;
  }

  #over-ons-text {
    width: 80vw;
    font-size: 2.2vw;
    text-align: left;
    margin: 2vw 0vw 0vw 5vw;
  }

  #terug-button {
    font-family: "Montserrat";
    font-weight: 600;
    background-color: #000;
    color: #fff;
    padding: 1.5vw 3vw;
    margin: 2vw;
    border-radius: 0.5vw;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
    font-size: 2.6vw;
    position: absolute;
    left: 3vw;
    border-radius: 1vw;
    border: none;
  }

  #terug-button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f053";
    margin: 0vw 0.5vw 0vw 0vw;
  }
  .footer-links {
    position: absolute;
    bottom: 1.5vw;
    left: 0;
    width: 100vw;
    font-size: 2.2vw;
  }
  #closeModal {
    position: absolute;
    top: 0.5vw;
    right: 0.5vw;
    background-color: #000000;
    color: #fffc61;
    border: none;
    border-radius: 0.3vw;
    padding: 0.9vw 1.3vw;
    font-size: 3.4vw;
    cursor: pointer;
  }
}

@media only screen and (max-width: 600px) {
  .jkw-logo {
    width: 91vw;
    height: 23vw;
    margin-bottom: 5vw;
  }

  #startButton {
    padding: 2vw 10vw;
    font-size: 6vw;
    box-shadow: 1vw -1vw rgb(0, 0, 0), 1vw -1vw 0vw 0.2vw #fffc61;
  }

  .top-left-alignment {
    top: 2.5vw;
    left: 2.5vw;
  }

  .top-right-alignment {
    top: 2.5vw;
    right: 2.5vw;
  }

  .bottom-left-alignment {
    bottom: 2.5vw;
    left: 2.5vw;
  }

  .bottom-right-alignment {
    bottom: 2.5vw;
    right: 2.5vw;
  }

  .top-left-corner {
    height: 20vw;
    width: 16vw;
    border-top: solid 1vw #555;
    border-left: solid 1.13vw #555;
  }

  .top-right-corner {
    height: 20vw;
    width: 16vw;
    border-top: solid 1vw #555;
    border-right: solid 1.13vw #555;
  }

  .bottom-left-corner {
    height: 20vw;
    width: 16vw;
    border-bottom: solid 1vw #555;
    border-left: solid 1.13vw #555;
  }

  .bottom-right-corner {
    height: 20vw;
    width: 16vw;
    border-bottom: solid 1vw #555;
    border-right: solid 1.13vw #555;
  }

  .middle-left-alignment {
    bottom: 25vw;
    left: 0vw;
  }

  .middle-left-icon {
    width: 16vw;
    height: 43vw;
  }
  .middle-right-alignment {
    top: 25vw;
    right: 0vw;
  }

  .middle-right-icon {
    width: 16vw;
    height: 43vw;
  }

  footer {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 12.5vw;
    width: 100vw;
    z-index: 999;
  }

  .footer-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff23;
    color: #fff;
    width: 14.5vw;
    text-align: center;
    font-size: 8vw;
    border-radius: 2.5vw 2.5vw 0px 0px;
    cursor: pointer;
  }
  .index-buttons {
    display: none;
  }

  .index-buttons-mobile {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
  }
  .upper-half {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    width: 90px;
  }

  .front-text {
    display: none;
  }

  .front-mobile-list-container {
    margin-left: 5vw;
  }

  .front-mobile-list {
    display: contents;
    font-size: 13vw;
    line-height: 1.1;
  }
  .front-mobile-list li:nth-child(1):before {
    content: "Jongeren";
    position: absolute;
    color: #fffc6181;
    top: -1vw;
    left: 6.2vw;
    z-index: -1;
  }
  .front-mobile-list li:nth-child(2):before {
    content: "kieswijzer";
    position: absolute;
    color: #fffc6181;
    top: 13.5vw;
    left: 6.2vw;
    z-index: -1;
  }
  .front-mobile-list li:nth-child(3):before {
    content: "2023";
    position: absolute;
    color: #fffc6181;
    top: 28vw;
    left: 6.2vw;
    z-index: -1;
  }

  .footer-modal-upper-half {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    width: 90px;
  }

  .footer-front-mobile-list-container {
    margin-left: 5vw;
    text-align: left;
  }

  .footer-front-text {
    display: none;
  }

  .footer-front-mobile-list li:nth-child(1):before {
    content: "Bijdragen";
    position: absolute;
    color: #0000002f;
    top: -1.4vw;
    left: 6.2vw;
    z-index: -1;
  }
  .footer-front-mobile-list li:nth-child(2):before {
    content: "geleverd";
    position: absolute;
    color: #0000002f;
    top: 13.5vw;
    left: 6.2vw;
    z-index: -1;
  }
  .footer-front-mobile-list li:nth-child(3):before {
    content: "door:";
    position: absolute;
    color: #0000002f;
    top: 28vw;
    left: 6.2vw;
    z-index: -1;
  }

  .footer-front-mobile-list {
    display: contents;
    font-size: 13vw;
    line-height: 1.1;
  }

  .lower-half-buttons-first-row {
    display: flex;
    flex-direction: column;
    margin-left: 5vw;
    gap: 2.3vw;
    margin-top: 1vw;
  }

  .lower-half-buttons-first-row > button {
    width: 69vw;
    height: 12vw;
    border: 1px solid #000;
    background-color: #fffc61;
    border-radius: 1.2vw;
  }

  .lower-half-buttons-second-row {
    display: flex;
    flex-direction: column;
    margin-left: 5vw;
    gap: 2.3vw;
    margin-top: 1vw;
  }

  .lower-half-buttons-second-row > button {
    width: 69vw;
    height: 12vw;
    border: 1px solid #000;
    background-color: #fffc61;
    border-radius: 1.2vw;
  }

  .logo-izi {
    background: url(/assets/img/logos/logo-izi.png) center no-repeat;
    background-size: 33vw;
  }

  .logo-repr {
    background: url(/assets/img/logos/logo-repr.png) center no-repeat;
    background-size: 33vw;
  }

  .logo-wemagine {
    background: url(/assets/img/logos/logo-wemagine.png) center no-repeat;
    background-size: 33vw;
  }

  .logo-njr {
    background: url(/assets/img/logos/logo-njr.png) center no-repeat;
    background-size: 13vw;
  }

  .logo-fnv {
    background: url(/assets/img/logos/logo-fnv.png) center no-repeat;
    background-size: 10vw;
  }

  .footer-links {
    position: absolute;
    bottom: 2.5vw;
    left: 0;
    width: 100vw;
  }

  #closeModal {
    position: absolute;
    top: 0.5vw;
    right: 0.5vw;
    background-color: #000000;
    color: #fffc61;
    border: none;
    border-radius: 1.2vw;
    padding: 2.5vw 3.5vw;
    font-size: 4.4vw;
    cursor: pointer;
  }

  .button-start {
    background: #fffc61;
    border: 2px solid #fffc61;
    color: #000;
  }

  .button-overons {
    background: #000;
    color: #fffc61;
    border: 2px solid #fffc61;
  }

  .button-knop {
    background: #000;
    color: #fffc61;
    border: 2px solid #fffc61;
  }
  .footer-links {
    margin-top: 3vw;
    font-size: 2.8vw;
  }
  .over-ons-container {
    font-family: "Montserrat";
    background-color: #ffffff23;
    border-radius: 1vw;
    width: 90vw;
    padding: 2vw;
    font-size: 2.8vw;
    text-align: center;
  }

  .logo-small {
    background: url(/assets/img/logos/jkw-logo.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 71vw;
    height: 18vw;
    margin: 0 auto;
  }

  .numbers {
    text-decoration: none;
  }

  #over-ons-title {
    font-family: "Archivo Black";
    font-size: 10vw;
    color: #000;
    position: relative;
    text-align: left;
    margin-left: 5vw;
    line-height: 0.9;
  }

  #over-ons-title:before {
    content: "Over ons";
    position: absolute;
    color: #00000037;
    top: -0.7vw;
    left: 1vw;
    z-index: -1;
  }

  #over-ons-text {
    width: 80vw;
    font-size: 2.8vw;
    text-align: left;
    margin: 5vw 0vw 0vw 5vw;
  }

  #terug-button {
    font-family: "Montserrat";
    font-weight: 600;
    background-color: #000;
    color: #fff;
    padding: 1.5vw 3vw;
    margin: 2vw;
    border-radius: 0.5vw;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
    font-size: 1.4vw;
    font-size: 3vw;
    position: absolute;
    left: 3vw;
    border-radius: 1vw;
    border: none;
  }

  #terug-button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f053";
    margin: 0vw 0.5vw 0vw 0vw;
  }
}
