* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* INFO - De scrollbalk komt ook door de h2's die je met position relative naar rechts hebt geduwd (left: 20px). De h2's hebben geen breedte -> dus nemen breedte van de viewport. Als je ze dan nog eens 20px naar rechts duwt krijg je er gegarandeerd gratis een scrollbalk bij - Een a-tag is het enige inline-element dat je rond een block-element mag zetten. Je kan de a-tag dus rond je kader zetten, heel je kader wordt dan klikbaar. */
*/ html {
    scroll-behavior: smooth;
}

body {
    background-color: transparent;
    font-family: Poppins, sans-serif;
}

.container {
    margin: 0 auto;
}

header {
    margin: 0 auto;
}

#achtergrondFig {
    width: 100vw;
    height: 1900px;
    background-color: #f2f2f2;
    transform: skewY(10deg);
    position: absolute;
    z-index: 0;
    top: 900px;
}

/* ------------- STARTFOTO ---------------- */
#achtergrondFoto {
    width: 100vw;
    min-height: 110vw;
    background-image: url(../img/lopermin.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 0;
    opacity: 0.6;
}

/* ------------- MAIN ---------------- */
#wrap {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    min-height: 100vw;
    position: relative;
    overflow: hidden;
}

#containerHome {
    min-width: 300px;
    width: auto;
    margin: 0vh 7.5vw 0vh 7.5vw;
    position: relative;
    z-index: 20;
}


#logoHome {
    background-image: url(../img/volledigLogo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50vw;
    min-height: 18vw;
    margin-top: 10vh;
    margin-left: 15vw;
}

strong {
    font-weight: 400;
}

#introTekst {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 200;
    margin: 20px 5vw 20px 5vw;
    line-height: 20px;
    width: auto;
    text-align: center;
    position: relative;
}

/*#startButton {
    border: 2px solid red;
    padding: 8px;
    background-color: transparent;
    font-family: Poppins, sans-serif;
    font-size: 10px;
    font-weight: 600;
    transition: 0.2s ease-in;
    width: 100px;
    margin-left: calc(50% - 50px);
    text-align: center;
    cursor: pointer;
}*/

#startButton:hover {
    color: white;
    background-color: red;
}

#startButton:before {
    content: "";
    background: #383736;
    -webkit-transition: right 0.2s ease-in;
}

#startButton a:visited {
    color: black;
}

/* -------------- TEAM ------------*/
#containerTeam {
    margin: 0vh 7.5vw 8vh 7.5vw;
}

.team {
    position: relative;
}

#team {
    background-size: cover;
    background-repeat: no-repeat;
    margin: 5vh 10vw 10vh 10vw;
    position: relative;
    z-index: 20;
}

#team img {
    float: center;
    width: 80vw;
    height: 55vw;
}

#teamTitel {
    font-size: 50px;
    font-weight: 800;
    font-family: Poppins, sans-serif;
    position: absolute;
    top: -40px;
    right: 50px;
    z-index: 50;
    color: red;
}

/* --------- INDIVIDU ---------- */
#containerTeam {
    width: auto;
    margin: 0 auto;
}

.teamlid {
    margin: 4vh 10vw 0vh 10vw;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    width: auto;
    min-height: 335px;
    z-index: 5;
}

.biografie {
    font-family: Poppins, sans-serif;
    font-weight: 200;
    font-size: 10px;
    width: auto;
    min-height: 30vh;
    margin: 3vh 10vw 8vh 10vw;
    color: black;
    z-index: 50;
    position: relative;
    z-index: 5;
}

/* ---------- STEFAN -------- */
#Stefan img {
    float: left;
    width: auto;
    height: 335px;
}

#bioS {
    min-height: 10vh;
}

/* ---------- ROBIN -------- */
#Robin img {
    float: right;
    width: auto;
    height: 335px;
}

#bioR {
    text-align: right;
    min-height: 20vw;
}

/* ---------- MAARTEN -------- */
#Maarten img {
    float: left;
    width: auto;
    height: 335px;
}

#bioM {
    min-height: 10vh;
}

/* ---------- LIES -------- */
#Lieselotte img {
    float: right;
    width: auto;
    height: 335px;
}

#bioL {
    text-align: right;
    min-height: 20vw;
}

/* ------------ NIEUWE MQ ---------------- */
@media (min-width: 768px) {
    
    #wrap {
        min-height: 75vh;
        margin-bottom: 5vh;
    }
    
    #achtergrondFoto {
        width: 100vw;
        min-height: 80vh;
    }

    #containerHome {
        margin: 12vh 7.5vw 0vh 7.5vw;
    }

    #introTekst {
        font-size: 12px;
        line-height: 22px;
        margin: 40px 5vw 40px 5vw;
          width: 50vw;
    }

    #startButton {
        font-size: 12px;
    }

    #teamTitel {
        font-size: 80px;
        top: -65px;
        right: 120px;
    }

    #achtergrondFig {
        top: 1500px;
        height: 900px;
        transform: skewY(7deg);
    }

    #team {
        margin-bottom: 5vh;
    }

    .teamlid {
        position: relative;
        width: 40vw;
        margin: 0vh 2vw 0vh 2vw;
    }

    .flexen {
        display: flex;
        width: 100vw;
    }

    .biografie {
        font-size: 11px;
        width: 35vw;
        margin: 10vh 0vw 8vh 0vw;
    }

    #bioS,
    #bioM {
        margin-left: 10vw;
    }

    #bioR,
    #bioL {
        margin-left: 10vw;
        margin-top: 30vh;
        margin-bottom: 0vh;
    }

    #Robin,
    #Lieselotte {
        margin-left: 8vw;
    }

    #Stefan img,
    #Maarten img {
        width: auto;
        min-height: 20vh;
        margin: 5vh 5vw 0vh 5vw;
    }

    #Robin img,
    #Lieselotte img {
        width: auto;
        min-height: 20vh;
        margin: 25vh 0vw 5vh 5vw;
    }

    #RobinSamen,
    #LieselotteSamen {
        width: 40vw;
        margin: 0;
    }
}

/* ------------ NIEUWE MQ ---------------- */
@media (min-width: 992px) {
   
    #wrap {
        min-height: 60vh;
        margin-bottom: 5vh;
    }

    #achtergrondFoto {
        width: 100vw;
        min-height: 80vw;
    }

    #containerHome {
        margin: 0vh 7.5vw 40vh 7.5vw;
    }

    #logoHome {
        margin-top: 12vh;
        margin-left: 15vw;
    }

  /*  #startButton {
        border: 3px solid red;
        margin-bottom: 200px;
        font-size: 16px;
        width: 120px;
        margin-left: calc(50% - 60px);
    }*/

    #introTekst {
        margin: 60px 15vw 60px 15vw;
        line-height: 28px;
        font-size: 16px;
    }

    #team {
        width: 70vw;
        margin: 0vh 10vw 5vh 10vw;
    }

    #teamTitel {
        right: 200px;
        top: -85px;
        font-size: 110px;
    }

    #achtergrondFig {
        top: 1500px;
        height: 1600px;
        transform: skewY(6deg);
    }

    #Stefan img,
    #Maarten img {
        width: auto;
        min-height: 48vw;
        margin: 5vh 5vw 0vh 5vw;
    }

    #Robin img,
    #Lieselotte img {
        width: auto;
        min-height: 48vw;
        margin: 25vh 0vw 5vh 5vw;
    }

    #bioS,
    #bioM {
        margin-top: 20vh;
    }

    #bioR,
    #bioL {
        margin-top: 20vh;
    }

    #bioL {
        margin-bottom: 2vh;
    }
}

/* ------------ NIEUWE MQ ---------------- */
@media (min-width: 1200px) {
    
    #wrap {
        margin-top: 13vh;
        margin-bottom: 10vh;
    }
    
      #achtergrondFoto {
        width: 100vw;
        min-height: 130vh;
        opacity: 0.6;
        margin-top: -30vh;
    }
    
    #logoHome {
        margin-top: 8vh;
    }
    
    #achtergrondFig {
        top: 1800px;
        height: 2000px;
        transform: skewY(5deg);
    }

    #containerHome {
        margin: 2vh 7.5vw 10vh 7.5vw;
    }

    #introTekst {
        line-height: 30px;
        font-size: 18px;
    }

    #Stefan img,
    #Maarten img {
        width: auto;
        min-height: 52vw;
        margin: 5vh 5vw 5vh 5vw;
    }

    #Robin img,
    #Lieselotte img {
        width: auto;
        min-height: 52vw;
        margin: 25vh 0vw 5vh 5vw;
    }

    .biografie {
        font-size: 15px;
    }
}

@media (min-width: 1500px) {
   
    #wrap {
       
    }
    
    
    #logoHome {
        margin-top: 1vh;
    }

    #introTekst {
        font-family: Montserrat, sans-serif;
        font-size: 20px;
        font-weight: 200;
        margin: 80px 20vw 80px 20vw;
        line-height: 40px;
        width: auto;
        text-align: center;
        position: relative;
    }

    #startButton {
        font-size: 16px;
        width: 120px;
        margin-left: calc(50% - 60px);
    }

    #team {
        margin-top: 20vh;
    }

    #teamTitel {
        right: 300px;
        top: -135px;
        font-size: 160px;
    }
}
