:root {
    --color-primary: grey;
    --color-secondary: grey;
    --color-accent: grey;
    --color-bg: #efefef;
    --color-text: black;
}

body {
    margin: 0px;
    font-family: Arial, sans-serif;
    flex-direction: row;
    background-color: var(--color-bg);
}

/* --------------------NAVIGATIE BALK------------------------ */

.Navigatie {
    background-color: #666;
    width: 100%;
    padding: 8px 0px;
    border-bottom: 3px black solid;
    font-size: 18px;
}

.Navigatie a {
    color: var(--color-text);
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
}

.Navigatie a:hover {
    text-decoration: underline;
}

#Hamburger.icon {
    font-size: 18px;
    font-weight: bold;
    background: none;
    border: 2px solid var(--color-text);
    padding: 4px 8px;
    color: var(--color-text );
    cursor: pointer;
}

a {
    margin-left: 15px
}

#NavigatieItems {
    display: contents;
    margin-top: 8px;
} 

#Hamburger.icon.open {
    background-color: #555;
}

.show #NavigatieItems {
    display: none;
}

#Hamburger {
    margin-left: 8px;
}

/* --------------------NAVIGATIE BALK------------------------ */

.PromptText {
    font-weight: bold;
}

#FrontpageText1 {
    margin: 10px;
    margin-bottom: 0px;
    font-size: 30px;
}

#FrontpageText2 {
    margin: 10px;
    margin-bottom: 0px;
    font-size: 15px;
}


#FrontpageImg {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 10px;
}

.Artikel {
    margin: 10px;
}

.Artikel h1 {
    margin: 0px;
}

.Artikel img {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin-top: 10px;
}

.Box {
    border: solid black 3px;
    margin: 10px;
    padding: 10px;
    margin-right: 20px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    clear: both;
    background-color: #ccc;
}

.BoxDescText {
    width: auto;
    height: auto;
    margin-top: 0px;
}

.BoxTitelText {
    margin-top: 0px;
    font-weight: bold;
    font-size: larger;
    margin-bottom: 7px;
}

.Box a p {
    margin-top: 5px;
    margin-bottom: 0px;
}

.Box img {
    height: auto;
    width: 100%;
    max-width: 400px;
}

/* -------------------MEDIA------------------------ */

@media (max-width: 600px) {
    #Hamburger {
        display: block;
    }
    #NavigatieItems {
        display: none;
    }
    .Navigatie.show #NavigatieItems {
        display: block;
    }
    #NavigatieItems a {
        display: block;
        margin: 5px 5px;
    }
}