/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: lightblue;
  color: black;
  font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
  cursor: url('spoon.png'), auto;
}
.mixtape img {
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.mixtape img:hover {
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) 
          drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
  transform: scale(1.08);
}
.digit {
  position: absolute;
  font-family: "Comic Sans MS", cursive;
  font-size: 1.2rem;
  color: black;
  cursor: pointer;
  user-select: none;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.digit:hover {
  opacity: 1;
}

/* Position each digit — tweak these */
.d1 { top: 12%;  left: 45%;  }
.d2 { top: 45%;  right: 5%; }
.d3 { bottom: 5%; left: 5%; }
.d4 { top: 50%;  left: 60%; }
.d5 { bottom: 8%; right: 5%; }