@font-face{
    font-family: "Bierstadt";
    src: url("/assets/BIERSTADT.ttf");
}

@font-face{
    font-family: "Bierstadt";
    src: url("/assets/BIERSTADT_BOLD.ttf");
    font-weight: bold;
}

@font-face{
    font-family: "Bierstadt";
    src: url("/assets/BIERSTADT_ITALIC.ttf");
    font-style: italic;
}

@font-face{
    font-family: "Bierstadt";
    src: url("/assets/BIERSTADT_BOLD_ITALIC.ttf");
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'Bierstadt';
    text-align: center;
    background-image: url("/assets/achtergrond.png");
    margin: 0;
    height: 100%;
    width: 100%;
}

h1{
    color: white;
    justify-content: left;
}

p1{
    color: white;
    justify-content: left;
}

p{
    text-align: justify;
    padding-left: 30px;
    padding-right: 30px;
}

#content{
	display: flex;
	justify-content: center;
	flex-flow: wrap;
	margin: 0;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    cursor: pointer;
    z-index: 2;
}

header {
    background-color: #80090C;
}

header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #80090C;
}

header li {
    float: left;
}

.filter{
    float: right !important;
    padding: 14px 16px;
}

header li a{
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

header li a:hover {
    background-color: #CB2821;
}

.dropdown{
    display: block;
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: #CB2821;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.dropdown-content a{
    display: block;
    text-align: left;
    color: white;
    font-size: 20px;
    padding: 12px 16px;
    margin-bottom: 2px;
    background-color: #CB2821;
    height: available;
}

.dropdown-content a:hover{
    color: black;
}

.dropdown:hover .dropdown-content{
    display: block;
}

header input{
    border: 1px solid darkgray;
}

.window{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 	background-color: white;
	border: 2px solid gray;
	text-align: center;
    z-index: 3;
}

.window h1{
    margin: 2%;
    justify-content: center;
    color: black;
}

button{
    font-size: 30px;
    font-weight: bold;
    background: none;
    border: none;
    padding: 0;
    color: #80090C;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: absolute;
}

button:hover{
    color: #CB2821;
    transform: translate(1.02%);
}

/* Desktop Scherm*/
@media screen and (min-width: 1000px){

    .window{
        border-radius: 25px;
    }
}

/* Tablet Scherm */
@media screen and (min-width: 760px) and (max-width: 1000px){
    header{
        font-size: x-large;
    }

    .filter{
        float: left !important;
    }

    .window{
        border-radius: 25px;
    }
}

/* Telefoon Scherm*/
@media screen and (max-width: 760px){
    header{
        font-size: x-large;
        background: #80090C;
    }

    .home {
        display: block !important;
        text-align: left;
        left: 0;
        width: calc(100vw - 32px);
        padding: 14px 16px 15px 16px;
        font-size: 18px;
        text-decoration: none;
        font-weight: bold;
        color: white;
    }

    .icon {
        display: block !important;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 3;
        padding: 14px 16px;
        font-size: 18px;
        color: white;
    }

    header ul {
        overflow: visible;
    }

    .topnav{
        display: none;
        position: relative;
        background-color: #80090C;
    }

    .dropdown-content a{
        font-size: x-large;
    }

    header select{
        max-width: 40%;
        min-width: 40%;
        font-size: large;
    }

    header input{
        max-width: 80%;
        min-width: 80%;
        font-size: large;
    }

    .filter{
        float: left !important;
    }

    .window{
        border-radius: 25px;
    }
}