#amazing-container {
  left: 300px;
  top: 445px;
  width: 1052px;
  height: 140px;
  position: absolute;
  opacity: 1;
  transition: none !important; 
}

#amazing-text {
  display: none !important; /* Hide text as requested previously */
}

#amazing-logo {
  position: absolute;
  left: 0px !important; 
  height: 83%;
  top: 50%;
  /* STARTING STATE: Shrunk to nothing */
  transform: translateY(-50%) scale(0, 0); 
  
  /* ANIMATION: The "Pop" effect using the bouncy cubic-bezier */
  transition: transform 300ms 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* TRIGGERED STATE: Pops up to full size */
#amazing-logo.shown {
  transform: translateY(-50%) scale(1, 1) !important;
  left: 0px !important; 
}

#amazing-container.hide {
  top: 445px !important;
  opacity: 1 !important;
}
