* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.active {
    border-bottom: rgb(0, 0, 0) solid 2px;
}

:root {
    --imageHeight: 120px;
}

/* Header */

header {
    width: 100%;
}

header nav {
    width: 90%;
    height: 120px;
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
}

header nav ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
    width: 100%;
    list-style-type: none;
}

header nav ul li a {
    text-decoration: none;
    color: black;
    padding: 5px 0;
}

header nav ul li a:hover {
    color: gray;
    border-bottom: gray solid 2px;
}

.logo {
    width: 120px;
}


/* Home */

.home {
    height: 700px;
    margin-bottom: 20px;

    background-image: url(../images/mainPhoto.jpg);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position: center; 
}

.home content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.home content h1 {
    color: white;
    font-size: 40px;
}

.home content h3 {
    color: white;
}

.home content div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home content p {
    color: white;
    line-height: 1.6;
    margin: 10px 50px;
    width: 25%;
}

.home content a {
	color: white;
}

/* Over Ons */

.overOns {
    width: 90%;
    margin: 25px auto;
}

.overOns .families {
    width: 90%;
    margin: 0 auto;
}

.overOns .families .titel p {
    width: 100%;
}

.overOns .families .familieBisschop {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

.overOns .families .familieBisschop div {
    width: 100%;
}

.bisschop img {
    margin: 10px 0;
}

.bisschop p {
    width: 90%;
}


.overOns .titel {
    width: 75%;
    margin: 0 auto;
}
/* Contact */

.background {
    background-image: url(../images/contact.jpg);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position: center;
    
    height: 300px;
    margin: 25px 0;
}

.contact {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin: 25px 0;
}

.contact ul {
    list-style-type: none;
}

.info {
    display: flex;
    justify-content: center;
}

.infoAdres {
    display: flex;
    justify-content: center;
}

.openingstijden {
    display: flex;
    justify-content: center;
}

.openingstijden ul {
    margin: 0 10px;
}

.info {
    display: flex;
}

/* Doelen */

.backgroundDoelen {
    background-image: url(../images/doelen.jpg);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position: center;
    
    height: 300px;
    margin: 25px 0;
}

.doelen {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.doelen content {
    width: 80%;
    margin: 20px auto;

    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.doel {
    margin-bottom: 10px;
}

.doelen div {
    color: black;
    width: 80%;
}

.doelen div ul {
    list-style-type: "- ";
}

.doelen div ul li {
    line-height: 1.6;
}

/* Bookshop */

.bookshop {
    width: 80%;
    margin: 0 auto;

    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.bookshop div {
    width: 30%;
    height: 400px;
    margin: 50px 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bookshop div p {
    line-height: 1.6;
    height: 100px;
}

.bookshop div p a {
    color: black;
}

.bookshop div p a:hover {
    color: gray;
}

.bookshop img {
    width: 300px;
}

/* Footer */

footer {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.adres ul {
    list-style-type: none;
}

.adres {
    line-height: 1.6;
    width: 20%;
}

.socials {
    display: flex;
    justify-content: space-evenly;
    width: 30%;
}

.socials i {
    font-size: 30px;
}

/* Phone */

@media only screen and (max-width: 1200px) {
    .bookshop {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .bookshop div {
        width: 100%;
        height: 300px;
    }

    .doelen {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .doelen div {
        width: 100%;
    }
}

@media only screen and (max-width: 1125px) {
    .contact {
        flex-wrap: nowrap;
        flex-direction: column;
        margin: 0 auto;
        height: 400px;
        background-size: initial;
    }

    .contact div {
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .home {
        height: 700px;
        background-size: initial;
    }

    .home content div {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
    }

    .home content div p {
        width: 80%;
    }

    footer {
        flex-direction: column;
        height: 400px;
    }

    .doelen {
        background-size: initial;
        height: 700px;
    }
}

@media only screen and (max-width: 825px) {
    .overOns {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .overOns .families div {
        width: 100%;
    }

    .doelen h1 {
        font-size: 20px;
    }

    .doelen li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 600px){
    header nav {
        height: 200px;
    }
    
    header nav ul {
        flex-direction: column;
    }

    .adres {
        width: 30%;
    }

    .overOns .families .familieBisschop {
        flex-direction: column;
    }
    .overOns {
        margin: 10px auto;
    }
}

@media only screen and (max-width: 450px){
    .contact div {
        font-size: 11px;
    }
}
