.inventory {
	position: absolute;
	border: 2px solid white;
	image-rendering: -moz-crisp-edges;    /* Firefox */
	image-rendering: -webkit-crisp-edges; /* Webkit (Safari) */
	image-rendering: pixelated;           /* Chrome */
	z-index: 1085;
	background-color: black;
	color: white;
	padding: 2px 30px;
	width: 90vw;
	height: 128px;
	bottom: 16px;
}

.inventory h3 {
	position: absolute;
	border: 2px solid white;
	image-rendering: -moz-crisp-edges;    /* Firefox */
	image-rendering: -webkit-crisp-edges; /* Webkit (Safari) */
	image-rendering: pixelated;           /* Chrome */
	z-index: 1086;
    background-color: black;
    color: white;
    padding: 2px 30px;
    top: -32px;
    left: 64px;
    font-size: 20px;
}

.inventoryItem {
	float: left;
	border: 2px solid white;
	image-rendering: -moz-crisp-edges;    /* Firefox */
	image-rendering: -webkit-crisp-edges; /* Webkit (Safari) */
	image-rendering: pixelated;           /* Chrome */
	z-index: 1087;
	background-color: rgba(255, 255, 255, 0.1);
	margin-left: 32px;
	width: 64px;
	height: 64px;
	margin-top: 32px;
	background-size: contain;
}

.inventoryItemTitle {
	position: relative;
    bottom: -55px;
    color: white;
    background-color: black;
    display: none;
    font-size: 18px;
    padding: 2px 16px;
    border: 2px solid white;
    left: -16px;
}

.inventoryItem:hover .inventoryItemTitle {
	display: inline-block;
}