body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;      /* content starts from top */
  align-items: center;
  background: url("/img/achtergrond2.jpg") center/cover no-repeat fixed;
  font-family: sans-serif;
  text-align: center;
  color: blue;
  padding: 1em;                     /* add some padding on mobile */
  box-sizing: border-box;
}

/* Header */
h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin: 0.5em 0;
}

/* Logo image */
img {
  width: min(80%, 400px);            /* allow larger images on mobile */
  height: auto;
  margin: 1em 0;
}

/* Paragraphs */
p {
  font-size: clamp(1rem, 4vw, 1.5rem);
  margin: 0.5em 0;
}

/* Push counter to bottom */
.counter-container {
  margin-top: auto;                  /* pushes it to bottom of flex container */
  margin-bottom: 1em;                /* small gap from bottom */
}



/* Counter fixed near bottom */
.counter {
  position: fixed;
  bottom: 20px;       /* 20px above bottom of viewport */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

/* Each digit box */
.counter .digit {
  display: inline-block;
  width: 18px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  background-color: #eee;
  border: 1px solid #000;
  border-radius: 2px;
}

@media (max-width: 600px) {
  img {
    width: 100%;   /* full width on small phones */
    max-width: none;
  }
}

  