:root {
  --page-background: #f8f7f2;
  --soft-shadow: rgba(18, 24, 38, 0.14);
}

* {
  box-sizing: border-box;
}

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

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

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.75rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem) 3rem;
}

.laptop {
  display: block;
  width: min(72vw, 34rem);
  height: auto;
  filter: drop-shadow(0 1.35rem 2.25rem var(--soft-shadow));
}

@media (max-width: 480px) {
  .laptop {
    width: min(84vw, 24rem);
  }
}
