* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  display: flex;
  align-items: center;      /* verticaal centreren */
  justify-content: center;  /* horizontaal centreren */
  background: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.wrapper {
  text-align: center;
}

.logo {
  max-width: min(360px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto 24px auto;
}

.contact {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.contact a {
  color: inherit;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}