*,
*::after,
*::before {
  box-sizing: border-box;
}

:root {
  font-size: 16px;
  --color-text: rgb(227 226 220 / 86%);
  --color-bg: #000;
  --color-link: rgb(227 226 220 / 86%);
  --color-link-hover: rgb(227 226 220 / 100%);
  --page-padding: 1.5rem;
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: 'scale-variable', -apple-system, BlinkMacSystemFont, Segoe UI,
    Helvetica, Arial, sans-serif;
  font-variation-settings: 'wght' 400, 'wdth' 100;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content {
  padding: var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 20vh;
  width: 100vw;
  position: relative;
  min-height: 100vh;
  place-items: center;
  margin-bottom: 70vh;
}

.blur-text {
  width: 70vw;
  max-width: 1000px;
  min-width: 300px;
  line-height: 1.2;
  font-family: 'instrument-sans-variable', sans-serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
}

.blur-text--4 {
  font-variation-settings: 'wght' 400, 'wdth' 95;
  letter-spacing: -0.05em;
}
