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

body {
  background-color: #000;
  background-image: url("./homepage-clients.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  overflow: hidden;
}

body::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 20px;
  width: 300px;
  height: 100px;
  background-image: url("./logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.debug-panel {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-family: monospace;
  font-size: 14px;
  pointer-events: none;
}