.slidein {
    animation-duration: 2s;
    animation-name: slidein;
    animation-iteration-count: 1;
    animation-direction: alternate;
  }
  
  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }

/**Animacion del body*/
/*
body::after{
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-background);
  opacity: 0.4;
  border-radius: 50%;
  box-shadow: 3px 3px 10px rgb(168, 168, 168);
  margin: 5px;
  top: 0;
  right: 0;
  z-index: -1;
  animation: bolaBackGround 10s infinite ease-in-out;
}
*/
/*
@keyframes bolaBackGround {
  0%{
    top: 0;
    left: 0;
  }
  50%{
    transform: translateX(98vw);
    
    background-color: var(--color-icono);
    box-shadow: 5px 5px 30px rgb(209, 209, 209);
    top: auto;
    bottom: 0;
  }
  75%{
    transform: scale(2);
    top: auto;
    left: 0;
  }
  100%{
    top: 0;
    left: 0;
    opacity: .1;
  }
  

*/