@import url('https://fonts.googleapis.com/css2?family=Abel&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body, html {
    height: 100%;
    font-family:"Abel";
    text-align:center;
}
body {
    
    background-color: white;
    margin:0;
    background-image:url("../img/achtergrond.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
}  
img {
    width:50%;
    margin:auto;
    padding:0;
    -webkit-filter: invert(1);
   filter: invert(1);
    
}
#onderkant {
    padding:20px 0px;
    font-size: 18px;
    color:#b7b7b7;
    background-color:black;
    display:grid;
    width:100%;
    grid-template-columns:16% 16% 16% 16% 16% 16%;
    text-align:center;
    position:fixed;
    bottom:0;
}
#onderkant > div{
    display:inline-block;
    
}
#bovenkant {
    background-color:#ffffff9c;
    height:100%;
}    
#onderkant :first-child{
    font-weight:bold;
}

@media only screen and (max-width: 1000px) {

    img {
        width:90%;
        margin-top:25%;
    }
    #onderkant{
        grid-template-columns:100%;
    }
    #onderkant > div{
        font-size:30px;
        padding: 2%;
    }
}