* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('images/1388712.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
}

#MainNAV {
    background-color: rgb(111, 83, 4);
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 1%;
    font-family: Impact;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

#Intro {
    background-color: darkgoldenrod;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    height: 300px;
    position: relative;
    z-index: 5;
}

#Logo {
    width: 300px;
    display: left;
    justify-content: center;
    align-items: center;
}

#logoImage {
    width: 80%;
    height: auto;
    margin-top: 50px;
}

#PayOff {
    width: 50%;
    font-family: Impact;
    font-size: 100px;
    color: white;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
    text-align: left;
}

#GokSite {
    width: 59%;
    font-family: Impact;
    font-size: 20px;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
    margin-top: -5%;
    position: absolute;
    top: 300px;
}

#Monkey {
    width: 450px;
    display: right;
    justify-content: center;
    align-items: center;
}

#MonkeyImage {
    width: 65%;
    height: right;
    margin-top: 45px;
    margin-left: 200px;
}

#SubMenu {
    background-color: rgb(111, 83, 4);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1%;
}

#SubMenuBalk {
    background-color: gold;
    width: 40%;
    text-align: center;
    padding: 1.5%;
    border-radius: 30px;
}

#HoofdMenu {
    width: 800px;
    display: right;
    justify-content: center;
    align-items: center;
}

#SubMenuBalk {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#HoofdMenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    justify-items: center;
    align-items: start;
    width: 100%;
    margin-top: 30px;
}

#HoofdMenu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-container {
    width: 90%;
    height: auto;
}

#HoofdMenuImage,
#HoofdMenu2Image,
#HoofdMenu3Image,
#HoofdMenu4Image {
    width: 90%;
}

#HoofdMenuImage {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

#HoofdMenu2Image {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

#HoofdMenu3Image {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

#HoofdMenu4Image {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}