* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #f6f7fb;
}

.center {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
}

.monster {
  max-width: min(420px, 90vw);
  width: 100%;
  height: auto;
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.12);
}

#cookie-banner p {
  margin: 0;
}

#cookie-banner button {
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  background: #1f6feb;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

#cookie-banner button:hover {
  background: #1557b0;
}

.monster {
  width: 100%;
  max-width: 400px;   /* optioneel: max grootte */
  height: auto;
  display: block;
}
