body {
  background-color: #000000;
  color: #ffffff;
  font-family: Arial;
}
a {
  text-decoration: none;
  font-weight: bold;
  color: #0080ff;
}
a:hover {
  text-decoration: underline;
  color: #00c0ff;
}

/* This rule hides the notification by moving it off-screen */
#copy-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -150%); /* Start off-screen */
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
}

/* This rule makes it visible when JS adds the 'show' class */
#copy-notification.show {
  transform: translate(-50%, 0); /* Slides it into view */
}
        
  /* Other styles for interaction */
#image-container {
  margin: auto;
  width: 824px;
}
#image-container img {
  cursor: pointer;
  margin: 0px;
  padding: 0px;
}