h1 {
  font-family: 'Chapaza';
    font-weight: normal;
    font-style: italic;
    letter-spacing: 0.2;
    margin-top: 2px;
   margin-bottom: 0px;
  }
  
h2 {
  font-family: 'Grantha Sangam MN';
  font-weight: 300;
  font-style: normal;
  color: white;
  }
  
h4 {
  font-family: 'Grantha Sangam MN';
  font-weight: 100;
  font-style: normal;
  color: white;
  font-size: 16px;
  }  
  
h5 {
  font-family: 'Grantha Sangam MN';
  font-weight: 100;
  font-style: normal;
  color: white;
  font-size: 20px;
  } 
  
p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Times New Roman';
    font-weight: normal;
    font-style: italic;
    letter-spacing: 0.2;
  }

#navmenu {
  font-family: 'Grantha Sangam MN';
  font-weight: normal;
  font-style: bold;
  color:black;
  font-size:25px;
  }
  
#bandname {
  font-family: 'Grantha Sangam MN';
  font-weight: normal;
  font-style: bold;
  color:pink;
  width:80%;
  margin-top:25%;
  margin-left:auto;
  margin-right:auto;
  }  
  
#tourdate {
  width: 95%;
  margin:auto;
  margin-bottom:5px;
  }
  

#showdate {
  margin-left:auto;
  margin-right:0px;
  }

#showcity {
  font-weight:300;
  }
#showcity:hover {
  text-transform: uppercase;
  color: blue;
  }

#showvenue {
  margin-left:0px;
  font-size:2;
  }

#tourwrap {
  background-image:url("https://teensuicide.online/img/colorpaper.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size:100% 100%;
  width: 80%;
  margin:auto;
  margin-top:1%;
  padding-bottom:5%;
  border: 5px solid black;
  }
  
/* iridescent */
.iridescent {
  font-weight: bold;
  background: linear-gradient(
    120deg,
    #ff00cc,
    #3333ff,
    #00ffe1,
    #ffcc00,
    #ff0066,
    #ff00cc
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: holoShift 6s ease infinite;
}

@keyframes holoShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
  
  
/* w3 noclip */
#grain {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.08;
  z-index: 99999;
  mix-blend-mode: overlay;
}

html, body {
  overflow-x: hidden;
}

/* glitch text idk */
.glitch {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
}

.glitch:hover::before {
  animation: glitch1 0.4s infinite;
  color: #aaa;
  opacity: 1;
}

.glitch:hover::after {
  animation: glitch2 0.4s infinite;
  color: #666;
  opacity: 1;
}

@keyframes glitch1 {
  0% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 2px); }
  100% { transform: translate(2px, 0); }
}

@keyframes glitch2 {
  0% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  100% { transform: translate(-2px, 0); }
}

/*scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* audio player?? */
#audioPlayer {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 1001;
}