:root {
  --bg-dark: #0d0d0d;
}

html {
  height: 100%;
  background-color: var(--bg-dark);
}

body {
  height: 100%;
  background-color: transparent !important;
  margin: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('/Background95.webp');
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100vh;
}

@supports (height: 100dvh) {
  body::before {
    background-size: auto 100dvh;
  }
}
