@import url("./fonts.css");

:root {
  --font-display: "Vanilla Whale", "Nunito", sans-serif;
  --font-body: "Nunito", sans-serif;
}

html {
  font-family: var(--font-body);
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-logo,
.display-heading {
  font-family: var(--font-display);
  font-weight: 400;
}

.placeholder-page {
  min-height: 100vh;
  margin: 0;
  color: #f4efe1;
  background:
    radial-gradient(circle at 50% 45%, rgba(84, 146, 176, 0.26), transparent 34rem),
    linear-gradient(180deg, #061722 0%, #02070c 100%);
}

.placeholder-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.placeholder-shell .site-logo {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.55);
}
