/**
 * Global base styles.
 *
 * Tylko normalizacja i bazowe zachowanie dokumentu.
 */

html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	color: var(--color-text);
	background-color: var(--color-background);
}

img,
picture,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}