
/* main */

main {
    display: flex;
    flex-wrap: wrap;
}



/* header */

header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    background-color: darkred;
}

header img{
    width: 12rem;
    height: auto;
}

.theader{
    margin-top: 5rem;
    color: white;
}



/* images */

img{
    width: 30rem;
    height: 25rem;
    object-fit: cover;
    border-radius: 20px;
    margin: 3rem;
}

.freepik{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.75rem;
}



/* lijsten */

ul{
    display: flex;
    justify-content: space-between;
}

li{
    margin-left: 1rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    padding-top: 0.5rem;
}



/* formulieren */

form select{
    width: 20rem;
}
form{
    margin-bottom: 5rem;
}

form{
    background-color: darkred;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    margin-left: 15%;
    padding: 2rem;
    font-family: 'Nunito Sans', sans-serif;
    width: 70%;
}

input{
    margin: 0.2rem;
}

select{
    margin: 0.2rem;
}



/* linken */

a{
    color: white;
    text-decoration: none;
}

a:hover{
 color: tomato;
}



/* article */

article{
    margin: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-family: 'Nunito Sans', sans-serif;
    width: 80%;
}



/* footer */

footer{
    font-family: 'Nunito Sans', sans-serif;
    background-color: darkred;
    color: white;
    display: flex;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

footer img{
    width: 12rem;
    height: auto;
    margin: 0.5rem;
}

footer p{
    font-size: 0.9rem;
}



/* Tekst */

h1{
    font-family: 'Lobster', sans-serif;
    font-size: calc(2em + 3vw);
    font-weight: bold;
}

h2{
    font-size: calc(2em + 1.5vw);
    margin-bottom: 1rem;
    font-weight:900;
    margin-top: 3rem;
    font-family: 'Nunito Sans', sans-serif;
}

h3{
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h4{
    font-size: 2rem;
    color: darkred;
    margin-bottom: 1.2rem;
}

p{
    font-size: 1.2rem;
    line-height: 120%;
    margin-top: 0.5rem;
}

strong{
    font-weight: bold;
    color: darkred;
}



/* id's */

#pizzaq{
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    width: 50rem;
}

#homepage1{
    
    margin-top: 2rem;
    margin-bottom: 3rem;
}

#homepage2{
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

#homep2div,#pizzaq{
    flex: 1 1 16rem;
}

#homep2div{
    margin-right: 3rem;
    margin-bottom: 2rem;
}

#video{
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    margin-bottom: 10rem;
    margin-left: 0%;
}

#videotekst{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-left: 20%;
}

#blogpost{
    margin-bottom: 3rem;
}

#telefoon2{
    color: black;
}

#mail2{
    color: black;
}

#contact{
    display: flex;
    margin-left: 17%;
    flex-wrap: wrap;
}

#contact img{
    flex: 1 1 16rem;
}

#onsteam{
    margin-left: 13%;
}

#personeel{
    display: flex;
    margin-left: 10%;
    flex-wrap: wrap;
}

#personeel article {
    flex: 1 1 35rem;
}



/* class */

.rood, .wit{
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    flex-wrap: wrap;
}

.rood {
    background-color: darkred;
    color: white;
}

.wit {
    background-color: white;
    color: dakred;
}


.review{
    color: darkred;
    margin-bottom: 0.7rem;
}

.reviewpost{
    margin-bottom: 3rem;
}

.personeel{
    width: 15rem;
    height: 15rem;
    object-fit: cover;
    border-radius: 20px;
    margin: 2rem;
}



/* lijntje */

hr{
    height: 0.5rem;
    background-color: darkred;
    border: none;
    border-radius: 1rem;
    width: 72rem;
}



/* video */

iframe {
    width: 100%;
}



/* responsief */

@media screen and (max-width: 1000px) {
    li::after{
        content: none;
    }

    ul{
        display: flex;
        flex-direction: column;
    }

    header img{
        width: 6rem;
        height: auto;
        margin-left: 1rem;
        margin-right: 2rem;
    }
    
    article{
        margin-left: 10%;
    }

    img{
    width: 15rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 20px;
    margin: 3rem;
    }

    .rood,.wit{
        margin-left: 4%;
    }

    #bestelformulier{
        margin-left: 8%;
    }

    #contactformulier{
        margin-left: 8%;
    }
        
    #contact{
        margin-left: 10%;
    }

    form select{
        width: 10rem;
    }
}


