/*
 * Theme Name:     Minimal Theme
 * Author:         Michael Bäumert
 * Template:       twentytwentyfive
 * Text Domain:	   minimal-theme
 * Description:    Minimal Child Theme of Twenty Twenty-Five.
 */

/* aktiviert smooth scrolling */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html{
    scroll-behavior: auto;
  }
}

/* legt den oberen abstand bei smooth scrolling fest */

*[id] {
    scroll-margin-top: 100px;
} 

/* fixierter Header */

.sticky-header {
	display: block;
	overflow: clip;
    position: fixed;
    z-index: 99;
    right: 0;
    left: 0;
	background-color: white;
}