* {
  box-sizing: border-box;
}

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

body {
  background: #f2f2f2;
  color: #121212;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

.bg-frame {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  z-index: 0;
}

.unicorn-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 1;
}

.unicorn-layer.is-ready {
  opacity: 1;
}

.unicorn-layer.is-failed {
  opacity: 0 !important;
  display: none !important;
}

.watermark-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.1;
  z-index: 2;
}

.watermark-logo {
  width: 120vw;
  height: auto;
  transform: scale(1.15);
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .watermark-logo {
    width: min(120vw, 1600px);
  }
}
