.description-button {
  position: absolute;
  top: 3vmin;
  right: 15vmin;
  z-index: 1000;
  cursor: pointer;
  padding: 2.5vmin;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0.5vmin 2vmin rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  width: 5vmin;
  height: 5vmin;
  display: flex;
  align-items: center;
  justify-content: center;
}

.description-button:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
}

.info-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon span {
  font-size: 6vmin;
  font-weight: bold;
  font-style: italic;
  color: #333;
  font-family: Georgia, serif;
}
