 

.image-container::before {
  content: "Star Alliance";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Consolas", cursive, sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  opacity: 0.3;
  pointer-events: none;
  z-index: 10;

  /* Move watermark upward by 20% of its own height */
  transform: translateY(-20%);
}