* {
  font-family: 'Oswald', sans-serif;
}

html {
  background-color: rgb(238, 238, 238);
}

body {
  margin: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  height: 12vh;
  background-color: #F5F5F5;
  margin: 0;
}

.logoHeader {
  height: 6vh;
  width: auto;
  align-items: center;
  margin: auto 7% auto 10px;
}

.header-links {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.header-link {
  display: flex;
  height: 100%;
  text-decoration: none;
  margin: auto 8% auto 0;
  color: black;
  font-size: 2.5vh;
  font-weight: 500;
  align-items: center;
}

.header-link:hover {
  color: #0D6C80;
  text-decoration: underline;  
}

.header-linkA {  
  color: #0D6C80;
} 

.secondHeader {
  position: relative;
  height: 25vh;
  width: 100%;
  display: flex;
  color: #F5F5F5;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/2ndHeader.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 65%;
}

.textInHeader {
  position: relative;
  font-size: 4vh;
  z-index: 1;
}

.textInHeader {
  position: absolute;
  font-size: 4vh;
}

footer {
  display: flex;
  height: 20vh;
  width: 100%;
  background-color: #272727;
  margin-top: auto;
}

.logoFooter {
  flex-wrap: wrap;
  height: 6vh;
  width: auto;
  margin: auto 3% auto 2%;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(16px 8px 2px #000000);
}

.footerContent {
  height: 12vh;
  margin: auto;  
  justify-content: center;
}

.footerHoofdTekst {
  font-size: 2vh;
  color: #F5F5F5;
  margin: 0;
  margin-bottom: 1.5vh;

}

.footerSubTekst {
  font-size: 2vh;
  color: #afafaf;
  margin: 0;
  margin-bottom: 1.5vh;

}

.volgOnsContainer {
  display: flex;
  justify-content: center;
  margin: auto auto auto 2%; 
}

.volgOns {
  font-size: 2vh;
  color: #F5F5F5;
  margin-right: 2vh;
}

.footerMediaLogo {
  height: 3.5vh;
  width: auto;
  margin: auto;
}

@media (max-width: 500px) {
  body {
    font-family: 'Oswald', sans-serif;
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
  }

   header {
    height: 10vh; 
  }

  .logoHeader {
    margin: auto 2% auto 2%;
    width: 12vh;
    height: auto;
  }

  .header-link {
      font-size: 1.6vh;
      width: auto;
  } 

  .secondHeader {
    height: 10vh;
  }

  .textInHeader {
    font-size: 3vh; 
  }

  footer {
    height: 18vh; 
  }

  .footerContent {
    margin-left: 3vh;  
  }

  .logoFooter {
    display: none;
  }

  .footerHoofdTekst {
    font-size: 1.7vh; 
  }

  .footerSubTekst {
    font-size: 1.4vh; 
  }

  .volgOns {
    font-size: 1.7vh; 
  }

  .footerMediaLogo {
    height: 4vh; 
  }
}