/* Formatierung für alle Links */
	a:focus   { background-color: red; color: black; font-size: 150%; } 
	a:hover   { background-color: blue; color: white; font-size: 150%; }
	a:active  { background-color: yellow; color: black; font-size: 150%; }
	a 		  { background-color: #343a40; color: white; }
	
	/* Formatierung für die Textboxumrandung */
	input:focus {background: #0080FF; outline:5px solid #0080FF;}
	
	/* Formatierung für neue Schriftart BaWue Sans */
	@font-face {
    font-family: 'BaWue Sans'; /* Name der Schriftart */
    src: url('../script/fonts/BaWueSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }
    
    body {
    font-family: 'BaWue Sans', sans-serif; /* Fallback zu sans-serif */
    }