@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mobile-background-header {
    display: none;
}
html, body {
    height: 100%;
}

body {
    background: black;
    font-family: 'Questrial', Arial, sans-serif;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

header {
    position: absolute;
    top: 20px;
    right: 20px;
}

header img {
    height: 250px;
    width: auto;
}
main {
    padding-bottom: 150px;
}

.inhoud {
    position: absolute;
    text-align: left;
    font-size: 20px;
    top: 200px;
    left: 10%;
    width: 50%;
    background-color: rgba(0,0,0, 0.25);
    color: white;
    padding: 15px;
    border-radius: 10px;
    padding-right: 75px;
    z-index: 1;      
}
.inhoud h1 {
    padding: 20px;
}
.inhoud p {
    margin-bottom: 20px;
}
.inhoud ul {
    list-style: none;
    padding-top: 5px;
}
.inhoud a {
    color: white;
    text-decoration: none;
}
.inhoud a:hover {
    font-weight: bold;
}

.inhoud img{
    width: 100%;
}

.menu ul{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.menu a{
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
}

.menu a:hover{
    font-weight: bold;
}

.menu li{
    float: left;
}

.contact a{
  color: #527672;
}

.contact a:hover{
  color: blue;
}



/* Responsive voor mobiel */
@media (max-width: 768px) {
  body{
    background-image: none;
  }

  .mobile-background-header {
      display: block; 
      width: 100%; 
      min-height: 250px; 
      position: relative; 
      z-index: 0;
  }
  header {
    right: 10px;
    top: 10px;
  }

  header img {
    height: 170px;
  }

  .inhoud {
    padding-right: 0px;
    padding-top: 0px;
    padding-left: 0px;
    font-size: 16px;
    text-align: left;
    left: 20px;
    width: 90%;
  }
  .menu a{
    padding: 5px;
  }

  .quote {
    text-align: center;
    padding-top: 20px;
    margin: 0px 0px 0px 0px;
  }
  footer {
    padding: 0px 0px 2px 0px;
    text-align: center;
  }

  footer .socials{
        justify-content: center;
  }

  footer .socials img {
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease;
  }


}