*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  background-color: #050506;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #050506;
  color: #9c9a97;
}

.landing {
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.icon-stage {
  position: relative;
  width: min(36vmin, 10.5rem);
  aspect-ratio: 1;
  flex-shrink: 0;
}

.icon {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: invert(1) brightness(0.3) contrast(1.12);
}

.icon-filter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: url("./icon.svg");
  mask-image: url("./icon.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #000;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
