*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'sans-serif';
    background-color: #fff;
    color: #444;
    font-size: 14px;
}


/* p {
    margin: 0 0 1em 0;
} */

.wrapper {
    max-width: 940px;
    grid-template-columns: 1fr; /* default: single column */
    margin: 0 auto;
    display: grid;
    grid-gap: 10px;
}

img.filmpicture{
    width: 150px;
    height: 100px;
    mix-blend-mode: multiply;
}

@media (max-width: 600px) {
    h1{
        font-size: 20px;
    }
    img.filmpicture{
        width: 120px;
        height: 80px;
    }
    body{
        font-size:18px;
    }
}

.header {
    background-image: url(../images/header.webp);
    background-repeat: no-repeat;
    color: #FFF;
}



@media screen and (min-width: 750px) {
    /* no grid support? */
    /*.dxblock {
        float: left;
    }
    .filmblock {
        float: right;
    }*/
    .wrapper {
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
    }
    .header,
    .footer {
        grid-column: 1 / -1;
        /* needed for the floated layout */
        clear: both;
    }
    .found {
        /* needed for the floated layout */
        background-color: #E3F2FD;
    }
}



.wrapper>* {
    background-color: #dae2ea;
    border-radius: 5px;
    padding: 10px;
    /* font-size: 150%; */
    /* needed for the floated layout*/
    margin-bottom: 10px;
}


/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */

@supports (display: grid) {
    .wrapper>* {
        width: auto;
        margin: 0;
    }
}

h1 {
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    line-height: 12px;
    text-shadow: 0.1em 0.1em 0.2em black;
    color: #f8f8f2;
    margin: 0.4em 0.4em 0.4em 0.4em;
}

h1 a {
    color: inherit;
    /* Inherit the color from the parent element (h1) */
    text-decoration: none;
    /* Remove underline */
}

a {
    color: #066c9c;
}

h3 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-variant: normal;
    line-height: 25.4px;
    text-align: center;
}

li {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px;
}

blockquote {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 30px;
}

pre {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 18.5667px;
}

.donation {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 8px;
    font-style: normal;
    font-variant: normal;
}