:root {
  --cake-orange: #f7941d;
  --image-shadow: rgba(92, 39, 0, 0.24);
}

* { box-sizing: border-box; }

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

body {
  background: var(--cake-orange);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cake-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.cake-image {
  display: block;
  width: min(100%, 920px);
  height: auto;
  max-height: min(72vh, 760px);
  object-fit: contain;
  border-radius: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 2rem 5rem var(--image-shadow);
}
