/* Elanor Fonts */

@font-face {
  font-family: "ElanorExtraBoldItalic";
  src: url("../pagina/fonts/ElanorFreePersonalUse-ExBdIt.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "ElanorExtraLight";
  src: url("../pagina/fonts/ElanorFreePersonalUse-ExtLt.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}
.font-elanor-light {
  font-family: "ElanorExtraLight", "DM Sans", sans-serif;
}

 @keyframes float-animation {
  0%   { transform: rotate(0deg) translateX(20px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}
.animate-float { animation: float-animation 20s linear infinite; }