/*
	CSS Stylesheet „common“
	Version 2023-11-09a
	© 2023 m-ds GmbH
*/

::placeholder {
	color : #ddd;
}

html, body {
	height   : 100%;
	overflow : hidden;
}

html {
	overscroll-behavior : contain;
}

body, button {
	font-family : var(--font);
}

body {
	background  : hsl(330, 10%, 90%);
	color       : var(--color);
	display     : grid;
	margin      : 0;
	user-select : none;

	grid:
		"header" max-content
		"main"   auto
		"footer" 30px
		/1fr
	;
}

a, button {
	-webkit-tap-highlight-color : transparent;
}

a {
	color           : var(--color-link);
	text-decoration : none;
}

a:hover {
	color : var(--color-link-hover);
}

.no-scrollbar {
	-ms-overflow-style : none;
	scrollbar-width    : none;
}

.no-scrollbar::-webkit-scrollbar {
	display : none;
}