html,
body {
  margin: 0;
  padding: 0;
}

.mmLogoBackground {
  z-index: -1;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100dvw;
  height: 100%;
  max-height: 100dvh;
  gap: 0.5rem;
  overflow: hidden;
  background-color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
}

.mmLogoBackground::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.82;
}

.mmLogoBackground .row {
  display: flex;
  width: 100%;
  height: 10rem;
  white-space: nowrap;
  position: relative;
}

.mmLogoBackground .row:nth-child(even) {
  justify-content: flex-end;
}

.mmLogoBackground .row .content {
  display: flex;
  gap: 0.5rem;
  top: 0;
}

.mmLogoBackground .row .content svg {
  height: 10rem;
  width: auto;
}
.mmLogoBackground .row:nth-child(odd) .content svg:nth-child(odd) {
  fill: #a7a7a7;
}

.mmLogoBackground .row:nth-child(even) .content svg:nth-child(even) {
  fill: #fff;
}

.mmLogoBackground .row:nth-child(even) .content svg:nth-child(odd) {
  fill: #a7a7a7;
}

.mmLogoBackground .row:nth-child(odd) .content svg:nth-child(even) {
  fill: #fff;
}
.paracaidas-container {
  position: fixed;
  top: -200px;
  left: 80%;
  transform: translateX(-50%);
  width: 150px;
  text-align: center;
  z-index: 1000;
  display: none;
  animation: caer 4s ease-out forwards;
}

.paracaidas-container img {
  width: 100%;
}

@keyframes caer {
  0% {
    top: -200px;
  }
  90% {
    top: 100vh;
  }
  100% {
    top: 120vh;
    opacity: 0;
  }
}
