/* ANIMATION FOR MAIN CONTENT SLIDING UP */
#block-volstate-content .content {
  transform: translateY(30%);  /* Start off-screen (halfway below the screen) */
  opacity: 0; 
  animation: slideUp 1.8s ease-out forwards;  /* Slide up */
}

/* Keyframes for the main content sliding up */
@keyframes slideUp {
  0% {
    transform: translateY(30%);  /* Start off-screen (below) */
    opacity: 0;  /* Initially invisible */
  }
  100% {
    transform: translateY(0);  /* Move to original position */
    opacity: 1;  /* Fade in */
  }
}
