/* Has the various styles for 1 off styles */

/* Alternative style - Sound dampening effect */
.dampening-title {
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #d66000;
	text-shadow: 
		0 0 10px rgba(52, 152, 219, 0.3),
		0 0 20px rgba(52, 152, 219, 0.2),
		0 0 30px rgba(52, 152, 219, 0.1);
	position: relative;
	margin: 40px 0;
	transition: all 0.3s ease;
}

.dampening-title:hover {
	color: #34495e;
	text-shadow: 
		0 0 5px rgba(52, 152, 219, 0.6),
		0 0 10px rgba(52, 152, 219, 0.4),
		0 0 15px rgba(52, 152, 219, 0.2),
		0 0 20px rgba(52, 152, 219, 0.1);
	transform: scale(1.02);
}

.absorption-title-diffusion {
	opacity: 1;
	animation: diffuse-absorb 5s ease-in-out infinite;
  }
  
  @keyframes diffuse-absorb {
	0% {
	  opacity: 1;
	  filter: blur(0px);
	}
	50% {
	  opacity: 0.8;
	  filter: blur(1px); /* Subtle blur */
	}
	100% {
	  opacity: 1;
	  filter: blur(0px);
	}
  }
