body {
  margin: 0 auto;
  padding: 0;
  background-color: whitesmoke;
  background-image: url(./../img/bgs/clouds.gif);
  background-repeat: repeat;
  font-family: "Times New Roman", Times, serif;
  color: black;
  cursor: url("junk-drawer/PixelatedCursor.cur"), auto;
}

a {
  cursor: url("junk-drawer/classic_linksel.cur"), auto;
}

.container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 3 / 3;
}

.frame {
  position: absolute;
  width: 100%;
  z-index: 3;
  display: block;
}

.cart {
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 2;
}

.cart img {
  width: 100%;
  height: auto;
  display: block;
}

.floor {
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 1;
}

.floor img {
  width: 100%;
  height: auto;
  display: block;
}

.objects {
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 4;
}

.objects img {
  width: 100%;
  height: auto;
  display: block;
}

.book-stack {
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 4;
}

.book-stack img {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.book-back {
  z-index: 1;
  pointer-events: none;
}

.book-front {
  z-index: 2;
  display: block;
  position: relative;
}

.book-front img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.book-stack:hover .rotate-left {
  transform: rotate(-30deg) translateX(-30%) translateY(-45%);
}

.book-stack:hover .rotate-right {
  transform: rotate(25deg) translateX(20%) translateY(-60%);
}

.book-stack:hover img {
  filter: brightness(0.7);
}

.hover-text {
  position: absolute;
  top: var(--hover-text-top, 55%);
  left: var(--hover-text-left, 50%);
  transform: translate(-50%, -50%);
  background: transparent;
  color: white !important;
  filter: drop-shadow(1px 1px 0 black)
          drop-shadow(-1px 1px 0 black)
          drop-shadow(1px -1px 0 black)
          drop-shadow(-1px -1px 0 black);
  padding: 10px 18px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  font-size: 1.25em;
  z-index: 10;
  white-space: pre-line;
  box-shadow: none;
  font-family: "Times New Roman", serif;
  font-style:italic;
  font-weight: bold;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
  -webkit-font-smoothing: none;
  text-align: center;
}

.book-stack:hover .hover-text {
  opacity: 1;
  pointer-events: auto;
}

.hover-text:visited,
.hover-text:active,
.hover-text:link {
  color: #fff !important;
  text-decoration: none !important;
}

.hover-text:hover,
.hover-text:focus,
.hover-text:active {
  color: #fff !important;
  text-decoration: none !important;
}

h1 .goosebumps {
  font-family: "Nosifer", sans-serif;
  font-size: 80px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 600px) {
  .hotspot {
    font-size: 0.8em;
  }
}