html, body
{
	position: relative;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	user-select: none;
	touch-action: none;
	overscroll-behavior: none;
	background-color: var(--background);
	font-family: var(--os-font);
}

#positions
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	height: 100%;
	overflow: auto;
	justify-content: center;
	gap: 8px;
	padding: 8px;
	padding-bottom: 100px;
	box-sizing: border-box;
}

.position
{
	height: 320px;
	object-fit: contain;
	border-radius: 8px;
}

.position.hidden
{
	filter: brightness(0);
}

.position:hover
{
	outline: 1px solid black;
}
.position.hidden:hover
{
	outline: 2px solid gray;
}

body.single #positions,
body:not(.single) #single
{
	display: none;
}

#single
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#pull
{
	position: absolute;
	bottom: 32px;
	padding: 32px;
}

.last
{
	border: 3px solid green;
}