.quote-rotator {
  text-align: center; /* Centering quotes */
  position: relative;
  height: 100px; /* Height of the container for quotes */
  margin-bottom: 40px; /* Bottom margin */
}

.quote-rotator blockquote {
  font-size: 24px;
  font-style: italic;
  margin: 0;
  padding: 0 20px; /* Adding side margins */
  max-width: 800px; /* Optionally limiting width for better appearance */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.quote-rotator blockquote.active {
  opacity: 1;
}

/* Media Queries */
@media (max-width: 768px) {
  .quote-rotator {
      min-height: 200px; /* Minimum height of the container for quotes on smaller screens */
      margin-bottom: 40px; /* Reducing margin on smaller screens */
  }

  .quote-rotator blockquote {
      margin-bottom: 20px;
  }
}
