body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  background-color: white;
  text-align: center;
  cursor: url("junk-drawer/PixelatedCursor.cur"), auto;
}

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

@font-face {
  font-family: 'IBM_PGC';
  src: url('junk-drawer/Web437_IBM_PGC.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

header {
  padding: 1em 0;
  font-size: 2em;
  font-weight: bold;
}

.mall {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

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

/* Container for image and overlay text */
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: fit-content;
  height: fit-content;
  display: inline-block;
}

/* Image styling and rotation on hotspot hover */
.hotspot img {
  transform: rotate(0deg);
  transform-origin: center center;
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 0.75rem black);
}

.hotspot:hover > img {
  transform: rotate(10deg);
}

.hotspot:hover > img.no-rotate { 
  transform: rotate(0deg); 
}

.hotspot:hover {
  opacity: 1;
  pointer-events: auto;
}

.directory-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
  color: #46504e;
  text-shadow: none;
  transition: text-shadow 0.3s ease;
  pointer-events: none; 
  white-space: nowrap;
}

.hotspot:hover .directory-text {
  text-shadow: 2px 2px 4px whitesmoke;
}

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