body {
  background: rgb(54, 27, 27);
  height: 100vh;
  overflow: hidden;
}

.body-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  object-position: center;
  /* transform: scale(1.5); */
}

.body-image {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.5s;
}

.body-position {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  background-color: white;
}

.current {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -80%);
  padding: 1rem;
  border-radius: 1rem;
  transition: transform 0.5s;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

circle {
  opacity: 0.3;
}

circle.active {
  animation: circleAnimation 1s linear infinite alternate;
}

@keyframes circleAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

.popup {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 90vh;
  border-radius: 50px;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

iframe {
  width: 100%;
  height: 90%;
  border-radius: 50px;
}
