.sticky-header {
    position: sticky;
    top: 0;
		z-index: 999; /* ensures it stays above other content */
		background-color: white;
		width: 100%;
		display: flex;         /* enables flex centering */
    justify-content: center; /* centers children horizontally */
    align-items: center;
}