body {
  background: url('/images/TROPICALBG.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  font-family: "digital disco", sans-serif;
  color: white;
}

.container {
  text-align: center;
  padding: 10px;
}

header h1 {
  font-size: 120px;
  color: #f7b425;
  text-shadow: 3px 3px 8px #000;
  margin-bottom: 40px;
  letter-spacing: 8px;
}

/* Grid: exactly 3 columns */
.shrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Button base: transparent bg, solid text */
.shrine-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 250px;
  height: 120px;
  padding: 5px;
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 150pt;
  transition: all 0.3s ease;

  background: rgba(255, 255, 255, 0.2); 
  border: none;

  color: #f8b425;
  mix-blend-mode: normal;
  text-shadow: 2px 2px 2px #8e530a;

}

/* Hover: solid bg, text becomes "cut out" */
.shrine-button:hover {
  background: none;
  border: none;

  /* text appears transparent, showing bg image */
  color: white;
  mix-blend-mode: difference;
  text-shadow: none;
}
