html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  z-index: 2;
  position: fixed;
  padding: 2rem;
  width: 100vw;
}

.navcontainer {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  color: white;
  list-style-type: none;
}

.eigenlogo {
  width: 4rem;
  border-radius: 2rem;
}
.introcontainer {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
  background-color: #f4f4f4;
}
.info-card {
  background: white;
  padding: 1.25rem;
  max-width: 25rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  border-radius: 0.625rem;
  text-align: center;
}

.info-card h2 {
  color: #333;
}
.info-card p {
  color: #666;
  line-height: 1.6;
}
.appsgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.apps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.kleinapps{
  align-items: center;
}
.fotoapps {
  width: 8rem;
  opacity: 80%;
}
.fotoapps:hover {
  opacity: 100%;
  width: 20rem;
}

p {
  border-color: black;
  font-family: Sour Gummy, sans-serif;
  font-size: 0.7rem;
  color: black;
}

ol {
  font-weight: lighter;
}

h1 {
  font-family: sans-serif, "Franklin Gothic Medium", "Arial Narrow", Arial;
  font-size: 1rem;

  color: black;
}

h2 {
  font-size: 3rem;
  font-family: sans-serif, Arial, Helvetica;
  font-size: 2rem;
  color: black;
  padding: 0.5rem;
  font-weight: bold;
  font-style: italic;
}
h3 {
  color: black;
  font-size: 1rem;
  font-family: sans-serif, "Franklin Gothic Medium", "Arial Narrow", Arial;
  font-weight: bold;
  font-style: italic;
}
h4{
  color: black;
  font-size: 2rem;
  font-family: sans-serif,'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: bold;
}
a:link {
  color: black;
  text-decoration: none;
}
a:visited {
  color: black;
}
a:hover {
  color: red;
}
a:active {
  color: aqua;
}
.fotomalick {
  width: 15rem;
}
.overmijtekst {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.overmijcontainer {
  display: flex;
  justify-content: center;
  padding: 10rem;
  gap: 2rem;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contactmain{
  display: flex;
  flex-direction: column;
  align-items: center;
 height: 100vh;
align-items: center;
padding-top: 20rem;
}
.contactfootercontainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  }
.contactgegevensmain {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

.contactlogos {
  max-width: 3rem;
}

.copyright {
  border-style: none;
  font-size: 1rem;
}

@media screen and (width<1000px) {
  .overmijcontainer {
    flex-direction: column;
    text-align: center;
    padding: 0rem;
  }
  h1 {
    font-size: 2rem;
  }
  .fotomalick {
    width: 100vw;
  }
  p{
    font-size: 1rem;
  }
 
}
@media screen and (width>1000px){
  .info-card{
    max-width: max-content;
    
    
  }
  p{
    font-size: 1rem;
  }
 .navcontainer{
  gap: 3rem;
  padding-right:2rem ;
 }
 
}