.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/vrc-avatar-thumbnail.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
  opacity: 0.5;
}
.hero__overlay {
  position: relative;
  z-index: 1;
  padding: 2rem 4rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  border-radius: 16px;
}
.hero__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  text-align: center;
  letter-spacing: 0.1em;
}/*# sourceMappingURL=style.css.map */