.header {
  position: relative;
  overflow: hidden;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/media/contactbg.png);
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: -1;
}
.header > * {
  position: relative;
  z-index: 1;
}
.content {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 300;
  padding: 3vh;
  color: white;
}
.discordurl {
  text-decoration: none;
  color: dodgerblue;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  font-weight: 400;
  font-family: Inter;
}
