/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

html, body {
  font-family: "Jost", serif;
}

h1, h2, h3 {
  text-transform: uppercase;
}

.font-display {
  font-family: "Uncial Antiqua", "Jost", serif;
}

a {
  text-decoration: underline;
}
.no-underline {
  text-decoration: none;
}

@keyframes spin-y-axis {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.spinning-gem {
  display: inline-block;
  animation: spin-y-axis 1.2s linear infinite;
  transform-style: preserve-3d;
}
