* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

#mondrian {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
}

.hero {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.name-plate {
  background: #F5F1E6;
  border: clamp(6px, 1vw, 12px) solid #000;
  padding: clamp(1rem, 3vw, 2.2rem) clamp(1.4rem, 4vw, 3.2rem);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.9);
}

.name {
  font-family: 'Anton', 'Arial Black', sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 10vw, 8rem);
  color: #000;
}

.name .line {
  display: block;
}

.name .line:nth-child(2) {
  color: #D40920;
}

@media (max-width: 480px) {
  .name-plate {
    border-width: 6px;
  }
}
