:root {
  --app-bg-gradient: linear-gradient(180deg, #FB13CB 0%, #9D44FF 100%);
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #FB13CB;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  width: 100%;
  min-height: 100dvh;
  background: transparent;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #FB13CB;
  background-image: var(--app-bg-gradient);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transform: translateZ(0);
}
