/* Geef zowel html als body een achtergrond: dekt mobiele/safari randjes af */
html, body {
  background-color: #294d41;
  margin: 0;
  min-height: 100%;
}

/* Logo blok */
.logo {
  margin: 5% auto 0;
  text-align: center;
}
.logo img {
  max-width: 500px;
  width: 90vw;     /* schaalt netjes op mobiel */
  height: auto;
}

/* Footer vast onderin en echt gecentreerd */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;     /* niet 200% */
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: none;
  font-weight: bolder;
}
