:root {
  color-scheme: dark;
  --ink: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #111;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Futura PT", Futura, "Trebuchet MS", Arial, sans-serif;
  background: #111;
  color: var(--ink);
}

.landing {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 24px;
  background: #111;
  text-align: center;
}

.background,
.background::before,
.background::after {
  position: absolute;
  inset: 0;
}

.background {
  z-index: 0;
  overflow: hidden;
}

.background::before {
  content: "";
  background-image: url("assets/dasilva-background.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
}

.sparkles {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.landing::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.wordmark-layer {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Futura PT", Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(4.5rem, 16vw, 14rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.34);
}

@media (max-width: 640px) {
  .landing {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
      url("assets/dasilva-background.jpg");
    background-position: 61% center;
    background-size: cover;
  }

  .background {
    display: none;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 7.25rem);
  }
}
