:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bin-background: #ffd33d;
  --bin-foreground: #151515;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bin-background);
  color: var(--bin-foreground);
  transition: background-color 180ms ease, color 180ms ease;
}

.bin-day {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: max(2rem, env(safe-area-inset-top)) max(1.5rem, env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom)) max(1.5rem, env(safe-area-inset-left));
  text-align: center;
}

.date {
  margin: 0;
  font-size: clamp(4rem, 16vw, 12rem);
  font-weight: 850;
  line-height: 0.9;
}
