/* Only apply large width to main content images */
img.content-img {
  width: 500px;
}

body {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  background-image: url(https://ts4.mm.bing.net/th?id=OIP.UCPN0R2Ce4S96opO09kR_wHaEK&pid=15.1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}

#mute-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.screwdriver-icon {
  width: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#mute-button:hover .screwdriver-icon {
  transform: rotate(20deg) scale(1.1);
}

a {
  color: #00ffcc;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#jelly-popup,
#reaction-popup {
  position: fixed;
  background: #fff;
  border: 2px solid #333;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: none;
  z-index: 9999;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: black;
}

#jelly-popup {
  bottom: 20px;
  right: 20px;
  max-width: 220px;
}

#reaction-popup {
  bottom: 100px;
  right: 20px;
  max-width: 220px;
}

#jelly-popup img,
#reaction-popup img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

#close-popup,
#reaction-popup button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

#jelly-popup button {
  margin: 5px;
  padding: 8px 12px;
  background-color: #ffcc00;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  transition: background-color 0.3s ease;
}

#jelly-popup button:hover {
  background-color: #ffdd44;
}
