/*
////////////////////////////////////////////////////////////////////////
//                             anthrazit.org                          //
////////////////////////////////////////////////////////////////////////
//                                                                    //
//  Cascading Style Sheet for anthrazit                               //
//  Created 2007 by ls@anthrazit.org                                  //
//                                                                    //
////////////////////////////////////////////////////////////////////////
*/


.blockTop {
	view-transition-name: nav;
}

@media (prefers-reduced-motion: no-preference) {
	@view-transition {
		navigation: auto;
	}
}

::view-transition-group(root){
	animation-duration: 0.5s;
}

/*
::view-transition-old(root) {
	animation: fade-out-left 250ms ease-in forwards;
}

::view-transition-new(root) {
	animation: fade-in-right 250ms ease-out forwards;
}

@keyframes fade-out-left {
	to {
		translate: -100vw 0;
	}
}
@keyframes fade-in-right {
	from {
		translate: 100vw 0;
	}
	to {
		translate: 0 0;
	}
}
*/