@font-face {
  font-family: Anton;
  src: url("assets/anton.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  background: #000;
  color: #ff1628;
  font-family: Anton, Impact, "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; width: 100%; height: 100%; }

.teaser {
  background: #090909 url("assets/garage-background.webp") center / cover no-repeat;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mark {
  position: relative;
  width: min(82vw, 72vh, 640px);
  width: min(82vw, 72dvh, 640px);
  transform: translateY(-7vh);
  transform: translateY(-7dvh);
  aspect-ratio: 1;
  container-type: inline-size;
}

.logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px #0008);
}

.stamp {
  position: absolute;
  top: 63%;
  left: 50%;
  width: 100%;
  margin: 0;
  padding: .12em .06em .16em;
  transform: translate(-50%, -50%) rotate(-10deg);
  background: #000;
  border-block: .065em solid currentColor;
  font-size: min(6.4vw, 6.1vh, 57px);
  font-size: 10cqi;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-align: center;
}

.stamp span { display: block; white-space: nowrap; }
.stamp span + span { font-size: 1.15em; letter-spacing: .005em; }

@media (max-width: 600px) {
  .teaser { background-position: 62% center; }
}
