body,
html {
  margin: 0;
  padding: 0;

  user-select: none;
  -webkit-user-drag: none;
}

.prompt-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1%;
  z-index: 5;
}

.magnifier-icon {
  width: 5%;
  cursor: pointer;
}

.prompt {
  border-radius: 7px;
  padding: 1%;
  margin-top: 5px;
  background-color: rgba(255, 255, 255);
}

.bg-image {
  border-radius: 25px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-mobile {
  display: none;
  width: 100%;
  border-radius: 25px;
}
.image-desktop {
  width: 100%;
  border-radius: 25px;
}

.item {
  position: absolute;
}

.pointer-cursor {
  cursor: pointer;
  transition: transform 0.5s;
}

.pointer-cursor:hover {
  transform: scale(1.4);
}

.pointer-img {
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 2rem;
  z-index: 10;
}

.r-pointer-img {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 2rem;
  z-index: 10;
}

@media (max-width: 700px) {
  .image-desktop {
    display: none;
  }
  .image-mobile {
    display: block;
  }
  .bg-image {
    width: 360px;
    height: 454px;
  }

  .quiz-header-title {
    font-size: 1.25rem;
  }

  .prompt-container {
    display: none;
  }

  /* change pointer position in mobile view */
  .pointer-img {
    position: absolute;
    top: -15px;
    left: -15px;
    bottom: unset;
    width: 2.25rem;
    z-index: 10;
  }

  .pointer-cursor:hover {
    transform: unset;
  }
}

/* Magnifier Style */
.loupe {
  display: none;
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid black;
  box-shadow: 5px 5px 12px black;
  background: rgba(0, 0, 0, 0.25);
  cursor: crosshair;
  overflow: hidden;
  z-index: 500;
}

.loupe img {
  position: absolute;
  right: 0;
}
