@font-face {
  font-family: 'ProjectSans';
  src: url('font/APS_ProjectSans_1.0.otf') format('opentype');
  font-display: swap;
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100dvh;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}

@media (min-width: 1024px) {
  #bg-video {
    object-position: center 60%;
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.logo {
  width: clamp(252px, 53vw, 672px);
  height: auto;
  display: block;
}

.wip-text {
  font-family: 'ProjectSans', sans-serif;
  color: #ffffff;
  font-size: clamp(1rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  margin: 0;
  margin-top: clamp(-1.2rem, -3vw, -0.6rem);
}
