/* Centered top logo */
.site-header {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.site-logo {
    height: 100px;
    width: auto;
}

/* Center the heading and image */
.center-content {
    text-align: center;
    margin-top: 40px;
}

.center-content img {
    display: block;
    margin: 0 auto;
    width: 800px;
}
body {
    background-image: url("images/baas_achtergrond.jpg");
    background-size: cover;      /* makes it fill the screen */
    background-position: center; /* keeps it centered */
    background-repeat: no-repeat; /* prevents tiling */
    background-attachment: fixed; /* optional: makes it stay still when scrolling */
}