#LogoElinorgraphic
{
  max-width:250px;
  animation-name: animated_div;
  animation-duration: 5s;
  animation-delay: 1s;
  xanimation-iteration-count: 1;
}

@keyframes animated_div
{
  0% {transform: rotate(0deg);}
  25% {transform: rotate(30deg);}
  50% {transform: rotate(-30deg);}
  55% {transform: rotate(30deg);}
  70% {transform: rotate(-30deg);}
  100% {transform: rotate(0deg);}
}
