body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav {
    display: flex;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px 4px;
}
.logodiv {
    max-width: 1440px;
    width: 100%;
}
.logo {
    width: 400px;
    height: 100px;
    object-fit: contain;
}
.container {
    max-width: 1440px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 5%;
    grid-row-gap: 5%;
}
.keuzeblok {
    background-color: #ee7501;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.8);
    transition: all 0.3s ease-in-out;
}
.keuzeblok:hover{
    transform: translateY(-10px);
}
.container a{
    color: white;
    text-decoration: none;
}
.container a:hover{
    text-decoration: underline;
}
.keuzeblokKaatsheuvel {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
}
.keuzeblokDenBosch {
    grid-area: 1 / 2 / 2 / 3;
}
.locatieimage{
    width: 100%;
    max-height: 380px;
    object-fit: cover;
}
@media only screen and (max-width: 600px) {
    .logodiv{
        padding-left: 20px;
        padding-right: 20px;
    }
    .logo{
        width: 250px;
    }
    .container{
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
    }
  }