@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Ephesis&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg-cream: #f7f4ec;
  --bg-sage: #e6eee1;
  --card: #fffdfa;
  --text: #21312a;
  --muted: #5e6f66;
  --accent: #3f745e;
  --accent-hover: #2f5f4d;
  --line: #d7ded2;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #eef5e7, transparent 35%),
    radial-gradient(circle at 90% 0%, #fbeeda, transparent 30%),
    linear-gradient(140deg, var(--bg-cream), var(--bg-sage));
}

main {
  flex: 1;
  padding-bottom: 2rem;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

body::before {
  width: 280px;
  height: 280px;
  top: 60px;
  right: -80px;
  background: rgba(243, 211, 170, 0.35);
}

body::after {
  width: 320px;
  height: 320px;
  left: -110px;
  bottom: 40px;
  background: rgba(166, 203, 174, 0.35);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
}
