@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.ttf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Arabic Medium";
  src: url("../fonts/alfont_com_AlFont_com_AvenirArabic-Medium.otf")
    format("opentype");

  font-weight: 400;
  font-style: normal;
}
#rotating-text {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
#rotating-text {
  font-size: 10px;
  font-weight: 100;
}
}

.rotating-circle- {
  animation: rotate 20s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
