body {
    background-image: url('https://sadhost.neocities.org/images/tiles/nurple-static-bright.gif');
    color: white;
    font-family: "Lacquer", serif;
  }

  .escalarb {
    width: 30%;
    min-width: 70px;
    max-width: 120px;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 5%;

    font-weight: 400;
    font-style: normal;
    font-size: 1.5vw;
    text-align: center;
  }

  figcaption {
    font-size: large;
    background: rgba(18, 18, 18, 0.5);

  }

  .lacquer-regular {
    font-family: "Lacquer", serif;
    font-weight: 400;
    font-style: normal;
  }

  .coleccion {
    border-radius: 8px;
    width: 100%;

  }

  figure:hover {
    transform: scale(1.1);
  }

  .general {
    display: grid;
    grid-template-columns:
      repeat(auto-fit,
        minmax(240px, 1fr));
    gap: 32px;
    margin: 0 2%;
    text-align: center;
    padding-bottom: 80px;

  }

  .falling-image {
    position: absolute;
    width: 80px;
    height: auto;
    animation: fall 5s linear infinite;
    filter: blur(0px);
  }

  .background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    /* Evita que interfiera con el contenido de la página */
    z-index: -1;
    /* Envía el contenedor al fondo */
  }

  @keyframes fall {
    0% {
      top: -250px;
      transform: rotate(0deg);
    }

    100% {
      top: 100vh;
      transform: rotate(360deg);
    }
  }

  footer {
    background-color: rgba(18, 18, 18, 0.5);
    /* Color de fondo del footer */
    color: white;
    /* Color de texto */
    text-align: center;
    /* Centra el texto */
    padding-top: -20px;
    /* Espaciado interior */
    position: fixed;
    /* Fija el footer en la parte inferior de la ventana */
    bottom: 0;
    /* Lo coloca en la parte inferior */
    width: 100%;
    /* Asegura que el footer ocupe todo el ancho de la página */
    left: 0;
    /* Alinea el footer con el borde izquierdo de la página */
  }

  p {
    letter-spacing: 5px;
  }