/* =========================================================
   HOMEPAGE — WALLPAPER
========================================================= */

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body.home-page {
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: white;
}

/* CONTAINER */

.homepage {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

/* IMAGE */

.homepage-image {
  position: fixed;
  inset: 0;

  width: 100vw;
  height: 100vh;

  object-fit: cover;
  display: block;
}

/* TITLE */

.homepage-title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 20;

  text-align: center;
  color: rgba(255, 255, 255, 0.7);

  font-size: clamp(24px, 4.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;

  animation: title-jitter 0.06s infinite steps(1);

  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@keyframes title-jitter {
  0%   { transform: translate(-50%, -50%) translate(0, 0); }
  25%  { transform: translate(-50%, -50%) translate(0.6px, -0.5px); }
  50%  { transform: translate(-50%, -50%) translate(-0.5px, 0.4px); }
  75%  { transform: translate(-50%, -50%) translate(0.4px, 0.6px); }
  100% { transform: translate(-50%, -50%) translate(0, 0); }
}