body{
    font-family: 'Unbounded', cursive;
}
.container{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
    width: 100%;
    height: 100%;
}
.siteblok{
    width: 100%;
    height: auto;
}
.titel{
    text-align: center;
}
.afbeelding{
    height: auto;
    width: 100%;
}
.submit{
  display: block;
  width: 100%;
  border: none;
  background-color: #044caa;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
.submit:hover{
    background-color: cornflowerblue;
}
@media only screen and (max-width:850px) {
    .siteblok{
        grid-column: 1 / span 2;
        width: 100%;
        height: auto;
    }
}