/* Start custom CSS for html, class: .elementor-element-a0fa16b */@keyframes rotatelink {
  0% {
    transform: rotate(0);
    color: white;
  }
  50% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg) scale(1 5);
    color: orange;
    text-shadow: 0 0 40px yellow;
  }
}
.authorWebSite {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3953c3;
  padding: 10px 10%;
  direction: rtl;
}
.authorWebSite * {
  text-decoration: none;
  color: whitesmoke;
  font-size: 14px;
  font-weight: 200;
  opacity: 0.8;
  line-height: 28px;
  padding: 0;
}
.authorWebSite a:hover {
  opacity: 1;
  transition: 500ms;
  color: orange;
}

.authorWebSite .animation {
  animation: rotatelink 1s linear alternate infinite;
}
.authorWebSite p {
  padding: 0;
  margin: 0;
}
@media (max-width: 576px) {
  .authorWebSite {
    padding: 20px 2%;
  }
  .authorWebSite p {
    width: 70%;
  }
}/* End custom CSS */