/* Reset en basis */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  /* Schaakbordpatroon: twee linear-gradients voor dambord */
  background-color: #2a4b3a;
  background-image: linear-gradient(45deg, #bd1522 25%, transparent 25%),
    linear-gradient(-45deg, #bd1522 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #bd1522 75%),
    linear-gradient(-45deg, transparent 75%, #bd1522 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 1rem;
}

.logo-container img {
  max-width: min(90vw, 360px);
  height: auto;
  display: block;
}
