body{
    background-color: rgb(40, 41, 45);
    color: rgb(212,212,212);
    margin: 0;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
header{
    position: relative;
    background-color: rgb(53, 53, 57);
    display: grid;
}
header #myLinks{
    display: none;
}
footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 80px;
    background-color: rgb(53, 53, 57);
    padding: 10px 20px;
}
.navbar{
    display: block;
}

.logo{
    text-align: left;
    height: 80px;
}
    
.logo a img{
    height: 75px;
    text-align: left;
    padding: 4px;
}
footer nav a i{
    text-decoration: none;
    color: white;
}
.navbar a{
    display: block;
    text-align: center;
    text-decoration: none;
    color: rgb(212, 212, 212);
    font-size: 20px;
    height: 50px;
    padding: 4px;
}
.navbar a:hover{
    background-color: rgb(27, 25, 25);
}
.navbar a.hier{
    background-color: rgb(62, 62, 66);
}
.navbar a.hier:hover{
    background-color: rgb(27, 25, 25);
}

main{
    padding: 5px 10px;
}

h1{
    font-size: 28px;
}
h2{
    font-size: 26px;
}
.langScherm{
    display: none;
}
.langSchermMain{
    display: none;
}
.icon i{
    font-size: 60px;
    text-decoration: none;
    color: rgb(212, 212, 212);
}
.kortScherm .galerij{
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
}
.kortScherm .galerij a img{
    width: 60%;
    text-align: center;
}
.langScherm .galerij{
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15%;
    justify-content: center;
    gap: 20px;
}
.langScherm .galerij a img{
    width: 100%;
}

.kortSchermMain{
    display: block;
    text-align: left;
}
.kortSchermMain img{
    max-width: 60%;
}
#verstuurknop{
    width: 100%;
}
form p{
    display: grid;
    grid-template-columns: 30% 40%;
}
.radiobutton{
    display: block;
}

@media screen and (min-width:800px) {/* Voor wanneer het scherm minstens 800 pixels wijd is*/
    body{
        min-height: 100vh;
        display: grid;
        grid-template-rows: auto 1fr auto;
    }
    header{
        position: sticky;
        top: 0;
    }
    footer{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 80px;
        background-color: rgb(53, 53, 57);
        padding: 10px 20px;
    }
    main{
        padding: 10px 20px;
    }

    h1{
        font-size: 32px;
    }
    h2{
        font-size: 28px;
    }
    .navbar{
        display: grid;
        grid-template-columns: auto auto auto auto auto auto;
    }

    .logo{
        text-align: right;
        height: 80px;
    }
    
    .logo a img{
        height: 75px;
        text-align: right;
        padding: 4px;
    }
    footer nav a i{
        text-decoration: none;
        color: white;
    }

    .kortScherm{
        display: none;
    }
    .kortSchermMain{
        display: none;
    }
    .langScherm{
        display: block;
    }
    .langSchermMain{
        display: grid;
        grid-template-columns: 80% 20%;
    }
    header.langScherm{
        display: grid;
        grid-template-columns: 2fr 1fr;
    }

    .zijkant{
        text-align: right;
    }
    .zijkant img{
        max-width: 80%;
    }

    form p{
        display: grid;
        grid-template-columns: 28% 28%;
    }

}