:root {
	--shadow-color: 220 3% 15%;
	--shadow-strength: 10%;

	--team-1-color: 0, 74%, 54%;
	--team-2-color: 209, 77%, 43%;
}

html, body {
	width: 100%;
	padding: 0;
	margin: 0;
}

body {
	min-height: 100vh;
	display: grid;
	grid-template-rows: 1fr;
}

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

.content {
	display: grid;
	justify-content: center;
	align-content: center;
}

.content > *{
	width: calc(100vw - 2rem);
	max-width: 75ch;
}