:root {
  color-scheme: light;
  --background: #edf4ed;
  --text: #172017;
  --muted-border: rgba(23, 32, 23, 0.08);
  --shadow: 0 22px 70px rgba(30, 70, 38, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 142, 95, 0.22), transparent 36%),
    radial-gradient(circle at 80% 80%, rgba(170, 205, 165, 0.22), transparent 34%),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(24px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 40px);
  text-align: center;
}

.dutluk-image {
  display: block;
  width: min(72vw, 520px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: clamp(28px, 5vw, 54px);
  border: 1px solid var(--muted-border);
  box-shadow: var(--shadow);
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 760;
}

@media (max-width: 560px) {
  .page {
    justify-content: center;
  }

  .dutluk-image {
    width: min(84vw, 420px);
  }
}