body {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 74% 20%, rgba(255,255,255,.08), transparent 22rem),
    radial-gradient(circle at 34% 28%, rgba(198,14,24,.18), transparent 25rem),
    #000;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background:
    url("assets/mass-revolt-logo.png") center top / cover no-repeat,
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 8px);
  filter: grayscale(1) contrast(1.25);
  mix-blend-mode: screen;
  pointer-events: none;
}


img {
  display: block;
  max-width: calc(100vw - 10px);
  max-height: calc(100vh - 10px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-sizing: border-box;
}