  .container_albumCompartido{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5em 0em 3em 0em;
    gap: 0.4em;
position: relative;
overflow: hidden;
  }

  .center{
    text-align: center;
  }

  .justify{
    text-align: justify;
    padding: 0em 0.5em 0em 0.5em;
  }

  .container_albumCompartido a{
      position: relative;
      z-index: 2;
  }

  .img_gif{
    width: 200px;
    opacity: 0.9;
      position: relative;
  }

  .img_gif img{
width: 180px;
  }

.container_albumCompartido::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 500px;
    left: -10em;
    background-image: url(/recursos/img/florEsquinaHeader.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 5;
    pointer-events: none;
    opacity: 0.9;

     transform-origin: center;
    animation: girarFlor 60s linear infinite;
}

@keyframes girarFlor {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
  


@media (max-width:768px){
    .container_albumCompartido{
overflow:visible
  }
  .container_albumCompartido::after {
    width: 200px;
    left: -6.5em;
    bottom: -18em;
}

}


