@charset "utf-8";
/* CSS Document */

/*  Gültig für die gesamte Site inkl. alle Devices	*/

html,body{
	color: var(--color);
	
	
}

html{
	font-family: "Epilogue", sans-serif;
}
body *{
	box-sizing:border-box; 
}
body{
	margin:0px;
	padding:0px;
	width:100vw;
	min-height:100vh;
}
table{
	border-collapse:collapse;
	max-width : 100% !important;
	}
table td{
	vertical-align: top;
}
p{
	margin:0px;
	line-height:var(--line-height);
}
a[href]:link,a[href]:visited,a[href]:hover,a[href]:active,a:focus { 
	color:color: var(--link-color);
	text-decoration:none;
	-webkit-text-decoration:underline transparent;
	
}

