body{
    margin:0;
    padding:0;
    font-family: "schoolboek", "Helvetica Neue", sans-serif !important;
}
html{
    font-family: "schoolboek", "Helvetica Neue", sans-serif !important;
}
/* INT font */
/* (apply this font to headers on the site)*/
@font-face {
  font-family: "schoolboek";
  src: url("../font/Schoolboek-Regular.eot");
  src: url("../font/Schoolboek-Regular.eot?#iefix") format("embedded-opentype"),
    url("../font/Schoolboek-Regular.woff") format("woff"),
    url("../font/Schoolboek-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}


.header{
    background-color:#FEF163;
    height:100px;
}
.logo{
    margin:0 auto;
    max-width:750px;
    text-align: center;
}
.logo img{
    height:100px;
}

.melding{
    max-width: 750px;
    font-size: 1.3em;
    margin:0 auto;
    padding:20px;
}


/* animatie */
.animatie {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top:20px;
}

.server {
    width: 100px;
}

.truck {
    width: 48px;
    animation: moveTruck 12s linear infinite;
}

@keyframes moveTruck {
    0% {
        transform: translateX(-250%) scaleX(1);
    }
    50% {
        transform: translateX(250%) scaleX(1);
    }
    100% {
        transform: translateX(-250%) scaleX(1); 
    }
}
@media (max-width:600px) {
    @keyframes moveTruck {
    0% {
        transform: translateX(-100%) scaleX(1);
    }
    50% {
        transform: translateX(100%) scaleX(1);
    }
    100% {
        transform: translateX(-100%) scaleX(1); 
    }
}
}