:root {
  --background: #111111;
  --foreground: #f5f5f5;
  --image-border: rgba(255, 255, 255, 0.12);
  --image-shadow: rgba(0, 0, 0, 0.35);
}

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

html {
  min-height: 100%;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
}

.landing {
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.25rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem)
    clamp(4.5rem, 12vh, 6rem);
  text-align: center;
}

.landing h1 {
  margin: 0;
  color: var(--foreground);
  max-width: 100%;
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 700;
  line-height: 1;
  overflow-wrap: anywhere;
}

.landing__image {
  display: block;
  width: min(72vw, 28rem);
  max-height: min(48vh, 28rem);
  height: min(72vw, 28rem);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--image-border);
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 4rem var(--image-shadow);
  object-fit: cover;
  object-position: center;
}

.landing__notice {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  left: clamp(1rem, 4vw, 2rem);
  margin: 0;
  color: var(--foreground);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
}
