@font-face {
  font-family: 'AaaiightFat';
  src: url('https://thisistedb.neocities.org/aaaiight-fat.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



header h1 {
  font-family: 'AaaiightFat', sans-serif;
  font-size: 72px;
  margin: 0;
  letter-spacing: 2px;
}

h3 {
  font-family: "Protest Revolution", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
}

.outer-background {
  display: flex;
  justify-content: center;
  flex-direction: row;
  
  background: linear-gradient(to bottom, #2f2f2f, #d9d9d9);
  min-height: 100vh;
  padding: 60px 20px;
  overflow: hidden;
}

/* Static noise overlay */
.outer-background::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background-image: 
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><filter id='noiseFilter'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch' /></filter><rect width='100' height='100' filter='url(%23noiseFilter)' /></svg>");
  opacity: 0.6;
  animation: staticNoise 0.3s steps(10) infinite;
  z-index: 1;
}

/* Static noise animation */
@keyframes staticNoise {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

.content-box {
  position: relative;
  z-index: 2; /* keep content above noise */
  max-width: 1200px;
  width: 100%;
  background-color: rgba(255, 255, 255, .25);
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

/* Header styles */
header {
  text-align: center;
  margin-bottom: 50px;
}

header h1 {
  font-size: 72px;
  margin: 0;
  letter-spacing: 2px;
}

header h2 {
  font-size: 20px;
  color: #444;
  margin-top: 10px;
}

/* Grid layout */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* Left box */
.left-box {
  text-align: center;
   background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.dj-photo {
  width: 100%;
  border-radius: 30px;
  margin-bottom: 20px;
}

.info-box h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.info-box p {
  margin: 5px 0;
}

/* Right box */
.right-box h3 {
  margin-top: 0;
  font-size: 24px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.bio-box {
  margin-bottom: 30px;
}

.headshot {
  width: 100px;
  float: right;
  margin: 0 0 10px 20px;
  border-radius: 8px;
}

.gigs-box ul {
  padding-left: 20px;
  margin: 0;
}

.logos-box .logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.logos-box img {
  height: 40px;
  opacity: 0.85;
}
