:root {
  --bg: #0b0f17;
  --accent: #ff4d4f;
}
html,
body {
  height: 100%;
}
body {
  margin: auto;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  margin: auto;
}
.hero-img {
  max-width: 80vw;
  max-height: 60vh;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

h1 {
  font-size: clamp(18px, 6vw, 64px);
  letter-spacing: -2px;
  margin: 0;
  color: rgba(140, 0, 255, 0.377);
  text-transform: uppercase;
  text-align: right;
}

@media (max-width: 600px) {
  .hero-img {
    max-width: 92vw;
    max-height: 48vh;
  }
}
