@media only screen and (min-width: 1300px) {
/*Page title*/
h2 {
	text-align: center;
	padding-top: 3vw;
	font-size: 3vw;
	padding-bottom: 2vw;
}

h2 > abbr {
	text-decoration: none;
}

/*Shop items and their positioning*/
#allitems {
	position: relative;
	width: 100vw;
	height: 40vw;
	padding-bottom: 3vw;
}

#allitems > #firstitem {
	position: absolute;
	width: 40vw;
	height: 40vw;
	text-align: center;
	align-items: center;
	left: 7vw;
	top: 5vw;
}

#firstitem > img {
	width: 20vw;
	height: 20vw;
}

#allitems > #seconditem {
	position: absolute;
	width: 40vw;
	height: 40vw;
	text-align: center;
	align-items: center;
	right: 7vw;
	top: 5vw;
}

#seconditem > img {
	width: 20vw;
	height: 20vw;
}

#allitems > #thirditem {
	position: absolute;
	width: 40vw;
	height: 40vw;
	text-align: center;
	align-items: center;
	right: 7vw;
	top: 5vw;
}

#thirditem > img {
	width: 20vw;
	height: 20vw;
}

/*Extra information about purchasing*/
#allitems > p {
	position: absolute;
	width: 100vw;
	height: 5vw;
	text-align: center;
	bottom: 1vw;
	font-size: 2vw;
}
}