/* ELEMENTS __________________________________________________________________*/
* {
    box-sizing: border-box;
    font-family: inherit;
}

HTML, BODY, H1, H2, H3, H4, P, UL, LI {
    margin: 0px;
    padding: 0px;
}

BODY {
    font-family: medium-content-sans-serif-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #444444;
    background: #888888;
    font-size: 0.9em;
    padding: 30px;
}

A {
    color: #222222;
    text-decoration: underline;
}

A:visited {
    color: #444444;
}

A:hover {
    text-decoration: none;
}

A IMG {
    border: none;
}

IMG {
    border-radius: 2px;
}

H1, H2, H3 {
    font-size: 1.4em;
}

H1 {
    padding-bottom: 0.5em;
}

H1 SMALL {
    font-size: 0.5em;
    font-weight: normal;
}

H2 {
    text-align: right;
    padding-bottom: 2rem;
    color: #888888;
}

H3 {
    padding-bottom: 0.25em;
}

H4 {
    font-size: 0.8em;
    color: #888888;
}

P, UL {
    padding-bottom: 1em;
    line-height: 1.6em;
}

UL {
    margin-left: 1em;
}

NAV {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

NAV A {
    display: inline-block;
    min-width: 150px;
    width: 20%;
    padding: 0.5rem;
    text-decoration: none;
}

NAV A:hover {
    background: #eeeeee;
}

NAV A.selected, NAV A.selected:hover {
    background: #888888;
    color: #ffffff;
}

NAV A.selected:after {
    content: " →";
}

TABLE {
    border-collapse: collapse;
    font-size: 0.8em;
}

TD, TH {
    padding: 0.25em 1em 0.25em 0em;
    text-align: left;
    vertical-align: top;
}

/* IDS _______________________________________________________________________*/
#homeButton {
    float: left;
}

#wall {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

#wall a {
    display: block;
    margin: 2rem;
    text-decoration: none;
}

#wall IMG {
    display: block;
    width: 100%;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

#wall small {
    font-style: italic;
}

#container {
    max-width: 1200px;
    background: #ffffff;
    margin: 0px auto;
    padding: 2rem;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

#geselecteerdWerk {
    text-align: center;
    position: relative;
}

#werkTop {
    display: flex;
    align-items: flex-start;
    margin: 0 -2rem 0 -2rem;
}

#geselecteerdWerk #next,
#geselecteerdWerk #prev {
    width: 6rem;
    height: 6rem;
    text-decoration: none;
    font-size: 2rem;
    text-align: center;
    color: #cccccc;
}

#geselecteerdWerk #werk {
    display: block;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

#geselecteerdWerk #werkInfo {
    text-align: left;
    margin: 2rem auto 2rem auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;

}


#artiest {
    margin-bottom: 2rem;
}

#artiest #profielfoto {
    width: 88px;
    height: 118px;
    float: left;
    margin: 0 1rem 0 0;
    background: #eeeeee;
}

#werkOverzicht {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 4rem;
    margin-top: -0.5rem;
}

#werkOverzicht H4 {
    width: 100%;
    margin-top: 1rem;
}

#werkOverzicht .werk img {
    display: block;
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    margin: 0.5rem;
    background: #eeeeee;
}


@media only screen and (min-width: 640px) {
    #artiestInfo {
        display: flex;
        align-items: start;
    }

    #artiest {
        min-width: 250px;
        margin-right: 2rem;
    }

    #werkOverzicht {
        flex-grow: 1;
    }
}

#footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-bottom: 0;
    text-align: right;
}

/* CLASSES ___________________________________________________________________*/
.clear {
    clear: both;
}

.col1 {
    width: 170px;
}

.col2 {
    width: 360px;
}

.col3 {
    width: 410px;
}

.col23 {
    width: 750px;
}


/* Lightbox _________________________________________________________________ */
#lightbox {
    background-color: #FFFFFF;
    padding: 0px;
    border: none;
}

#lightboxCaption {
    font-size: 1px;
    margin: 0px;
    padding: 0px;
}

#lightbox img {
    border: none;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

#overlay img {
    border: none;
}

#overlay {
    background-image: url('../images/overlay.png');
}

* html #overlay {
    background-color: #FFFFFF;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}