/*
 * 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 {
      scroll-behavior: smooth;
    }
	
	
p {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

blockquote {
  margin: 1.5em 0;
  padding: 1em;
  border-left: 5px solid #ccc;
  font-style: italic;
  background-color: #f9f9f9;
}

blockquote p {
  display: inline; /* Keeps nested p elements inline with blockquote */
}

.inchup {
  position: relative;
  top: -8px; /* Moves the element up by 10 pixels from its original position */
}

div img { padding-bottom: 0.25em; }

h2 {
	font-size: x-large;
}

h3 {
	font-size: x-large;
}

/* Animated Page Title Animations */
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSubtle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-fade-in-slide-up {
  animation: fadeInSlideUp 0.8s ease-out forwards;
}

.animate-pulse-subtle {
  animation: pulseSubtle 3s ease-in-out infinite;
}