body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black; /* fallback if image fails */
  height: 100vh;
  font-family: sans-serif;
  position: relative;
}

.parallax-bg {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url('pixelspace_by_astrellon3.png');
  background-repeat: repeat;
  background-size: auto;
  z-index: -1;
  transform: translate(0, 0);
  transition: transform 0.1s ease-out;
}

.mew-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  height: 100vh;
  z-index: 1;
  position: relative;
}

.mew-character {
  width: 100px;
  height: 100px;
  cursor: pointer;
}

.bg-credit {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-family: Georgia, serif;
  color: #5d146f;
  font-size: 0.5rem;
  z-index: 2;
}

