body {
  background-image: url('../img/bg18.jpg');
  background-size: 250px 250px;
  padding: 0;
  margin: 0;
  position: relative;
}

#contact-bg-panels {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.contact-bg-panel {
  position: absolute;
  width: 250px;
  height: 250px;
  background-image: url('../img/bg19.jpg');
  background-size: 250px 250px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 280ms ease-in-out;
}

.contact-bg-panel.is-on {
  opacity: 1;
}

.form-bg {

}

.form-fg {
  position: relative; 
  z-index: 2; 
  margin-top: 0;
  padding: -50px;
}

/* Pseudo-element to handle the background image with opacity */
.form-fg::before {
  content: "";
  background-image: url('../img/glitchcontact.gif');
  background-size: cover; 
  opacity: 0.15; 
  position: absolute;
  width: 110vw;
  height: 110vh;
  z-index: -1; 
}

.form-container {
 z-index: 1; 
}



.contact-email-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}