/* Links are shown in text */
.text-box a {
  text-decoration: underline;
}

/* Change shadow header */
.text-box .header-wrapper .shadow {
  color: var(--light-blue);
}

/* Change menu style */
.menu-box {
  background-color: var(--light-blue);
}
.menu-box .about {
  font-weight: bold;
  font-family: 'Regular-Bold';
}
.menu-box .about:hover {
  background-color: var(--light-blue);
  color: white;
}

/* Mobile view */
@media (max-width: 850px) {
  /* menu */
  .menu-box {
    background-color: var(--dark-blue);
  }
  .menu-box .about {
    background-color: var(--light-blue);
  }
  /* column 2, so that girl does now overlap text */
  .text-box .col-wrapper .col2 p {
    margin-right: 8%;
  }
  /* remove double padding between col1 and col2 */
  .text-box .col-wrapper .col1 p:last-child {
    margin-bottom:0;
  }
}
@media (max-width: 450px) {
  /* column 2 last paragraph, so that girl does now overlap text */
  .text-box .col-wrapper .col2 p:nth-child(2){
    margin-right: 0;
  }
  .text-box .col-wrapper .col2 p:nth-child(3) {
    margin-right: 8%;
  }
}
@media (max-width: 340px) {
  /* girl was removed */
  .text-box .col-wrapper .col2 p:nth-child(3) {
    margin-right: 0;
  }
}
/* special case for en-page */
/* column 2 padding, so that girl does now overlap text */
@media (max-width: 731px) and (min-width: 566px) {
  :lang(en) .text-box .col-wrapper .col2 {
    padding-bottom: 20px;
  }
}