* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #000;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Questrial', Arial, sans-serif;
  background-image: url('background2.jpg');
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: left;
  color: #f0f0f0;
}

header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 80px;
}

main {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* inhoud helemaal naar rechts */
  align-items: flex-start;   /* inhoud bovenaan */
  padding: 40px;
}

.inhoud {
  text-align: right;
  font-size: 16px;
  color: #527672;
  padding: 15px;
  border-radius: 10px;
  max-width: 1000px;          /* optioneel: maximale breedte */
}

.inhoud p{
  padding-top: 70px;
}

.inhoud img {
  display: block;
  margin-left: auto;   /* afbeelding rechts */
  height: 250px;
  width: auto;
  margin-bottom: 20px; /* ruimte onder het logo */
}

.inhoud ul {
  list-style: none;
  padding-top: 10px;
}

.inhoud li {
  margin: 10px 0;
}

.inhoud a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 5px;
  font-size: 26px;
}

.inhoud a:hover {
  font-weight: bold;
}
.quote{
  text-align: center;
  color: #527672;
  font-size:20px;
  font-style: italic;
  font-weight: bold;
  padding-right: 50%;
}

footer {
  padding: 20px;
}

footer .socials {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

footer .socials img {
  width: 40px;
  height: 40px;        /* gelijke hoogte forceren */
  object-fit: contain; /* behoud verhoudingen */
  transition: transform 0.2s ease;
}

footer .socials img:hover {
  transform: scale(1.1);
}

/* Responsive voor mobiel */
@media (max-width: 768px) { 
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: left top +100px;

  }

  main {
    flex-grow: 1;
    padding: 5px;
  }

  .inhoud {
    padding: 10px;
    font-size: 18px;
    padding-top: 15px;
    text-align: center;
    color: #527672;
  }

  .inhoud img {
    width: 90%;
    height: auto;
    margin: 0 auto 0px;
  }

.quote{
  text-align: center;
  color: #527672;
  font-style: italic;
  font-size: 15px;
  font-weight: bold;
  padding-right:10%;
  background-color: rgba(0,0,0, 0.75);
}


  .inhoud p{
    padding-top: 0px;
  }

  .inhoud ul {
    padding-top: 35%;
    margin-top: 0px;
  }
  
  .inhoud a {
    font-size: 18px;
  }
  footer{
    padding: 5px;
  }
  footer .socials {
    margin-top: -50px;
    justify-content: center; /* socials ook centreren */
  }
}