* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0d0d0f;
  --fg: #f5f5f5;
  --muted: #8a8a90;
}

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

body {
  background: radial-gradient(circle at 50% 0%, #1a1a1f 0%, var(--bg) 60%);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 640px;
  width: 100%;
}

.photo {
  width: min(360px, 80vw);
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.title {
  font-weight: 900;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.subtitle {
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--muted);
}
