body {
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  font-family: Georgia, "Times New Roman", serif;

  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.03),
    rgba(0,0,0,0.03) 1px,
    transparent 1px,
    transparent 2px
  );
}

.gump-container {
  display: flex;
  flex-direction: column;
  align-items: center;     
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.gump-title {
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.gump-image {
  width: 200px;
  max-width: 80vw;
  height: auto;

  cursor: pointer;
  pointer-events: auto;
  z-index: 10;

  transition: transform 0.2s ease, filter 0.2s ease;
}

.gump-image:hover {
  transform: scale(1.06) rotate(-0.5deg);
  filter: contrast(120%);
}

.gump-image:active {
  transform: scale(0.95) rotate(1deg);
  filter: contrast(140%);
}

.reaction-text {
  display: none;
  margin-top: 15px;
  font-style: italic;
  opacity: 0.7;
  pointer-events: none; 
}
