html, body {
    margin: 0;
    padding: 0;
    height: 100%
}
body{
    background: #fff;
    overflow-y: scroll;
}
.wrapper {
    margin: 0 auto 0 auto;
    width: 90%;
    opacity: 0.95;
    color:rgb(27, 13, 13); 
}
.wrapper.article {
    margin-bottom: 100px;
}

 /** general style & helpers */
 .wrapper {
    font-family: 'Lato',serif;
    font-size: 1.1rem;
    padding: 0 0 0.5rem 0; 
}  

.wrapper p{
    margin-top:0;
}

.wrapper a{
    color: #c39c00;
    font-weight: 700;
}


/** header */
.header {
    padding:0.4rem 0 0.8rem 0;
    margin-bottom:1rem;

}

.header .logo {
    width:80%;
    margin-top:1rem;
}

.header video {
    width:80%;
}

.header .wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.header .column {
    width: 80%;
}


 /** text headers */
.wrapper .h2 {
     font-size:1.6em;
     margin:2rem 0.2rem 0.6rem 0;
     font-weight: 900;
 }

 /** Photo galleries */
.photos {
    max-width: 100%;
 }
.photos a {
    text-decoration: none;
}
.photos img{
    width: 30%;
    height: 100px;
    margin-left: 5px;
    object-fit: cover;
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
 }

 .photos.two-rows img{
    width: 45%;
    height: 150px;
    margin-left: 5px;
    object-fit: cover;
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
 }

 /** Contact page */
.contactlist{
    list-style: none;
    padding:0;
}

.contactlist a {
    display:inline-block;
    color: #fff;
    text-decoration: none;
    background: url('../img/layout/paper-black.png') rgba(1, 1, 1, 0.95);
    width:90%;
    padding:0.6rem 0.4rem 0.6rem 1rem;
    border-radius: 5px;
    margin-bottom:0;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    border-bottom: 2px solid #ffcc00;
}

.contactlist a:hover, .contactlist a:active{
    opacity:0.9;
}


.contactlist a img{
    margin-right:1rem;
}

/** Info page */
.textlist {
    list-style: square;
}
.textlist li{
    margin: auto auto 0.4rem auto;
}

.annelijn {
    width: 45%;
    margin: 1rem 0 0 0;
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
}

.annelijn2 {
    width: 45%;
    margin: 1rem 0 0 1rem;
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
}
.map {
    width:100%;
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.75);
}
.contact-map {
    width:93%;
    margin-top:1rem;
}

/** Media Queries */

@media only screen and (min-width: 350px) {

/* ====================
    JUST BIGGER THAN IPHONE5
    ==================== */

}

@media only screen and (min-width: 480px) {

/* ====================
    INTERMEDIATE
    ==================== */
    .header .h1 {
        font-size:1.6rem;
    }
}

@media only screen and (min-width: 700px) {   

/* ============
    WIDE
    ============ */
    .wrapper {
        width: 700px; /* 1140px - 10% for margins */
        margin: 0 auto;
    }
    .wrapper p {
        padding:0 0.6rem;
    }

    .header .logo {
        width:50%;
    }

    .nav-container {
        margin-bottom:1rem;
    }
}

@media only screen and (min-width: 1140px) {

/* ===============
    Maximal Width
    =============== */


}

