body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom, #fefcfb, #e8f0ff);
  color: #333;
  overflow-x: hidden;
}

.sanctuary {
  text-align: center;
  padding: 3rem 1rem;
}

.subtitle {
  font-style: italic;
  color: #555;
  margin-bottom: 2rem;
}

.affirmation-overlay span {
  display: block;
  font-size: 1.2rem;
  margin: 0.5rem;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.8; }
}

.tribute-card {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icons span {
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.scripture {
  font-style: italic;
  color: #444;
  margin-top: 1rem;
}

button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 2rem;
}

button:hover {
  background-color: #357ab8;
}

.hidden {
  display: none;
  margin-top: 1rem;
  font-weight: bold;
  color: #2c3e50;
}
