.jumpitemcontainer {
	position: fixed;
	right: 0px;
	width: 10rem;
	height: 90vh;
	top: 10vh;
  box-sizing: border-box;
  /*border: solid 5px orange;*/
  z-index: 1000;
}

.jumpitembox {
  height: 100%;
  /*box-sizing: border-box;*/
  list-style: none;
  display: flex;
  flex-direction: column;
	justify-content: space-around;
  padding: 0;
  margin: 0;
}

.jumpitem {
  height: 5rem;
	background-color: blue;
  color: white;
  font-size: 20px;
}

.iconcontainer {
	/*position: relative;
	top: 450px;*/
	box-sizing: border-box;
	/*border: solid 5px orange;*/
	width: 550px;
	max-width: 550px;
	left: auto;
	right: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	z-index: 500;
}

.iconbox {
	  width: 100%;
	  list-style: none;
	  display: flex;
	  flex-direction: row;
		justify-content: space-around;
	  padding: 0;
	  margin: 0;
}

.iconicon {
	width: 5rem;
  height: 5rem;
	content: "";
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(25%);
	transition:
		transform 0.3s;
}

.iconicon:hover {
	transform:	scale(1.1);
}

.vclicker {
	cursor: pointer;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: overlay;
	background-color: #444488;
	clip-path: polygon(30px 0px, 230px 0px, 200px 100%, 0px 100%);
	opacity: 0.6;
	transition:
		background-color 0.3s, opacity 0.3s, transform 0.3s;
}

.vclicker:hover {
	opacity: 1;
	background-color: #888888;
	transform:
		translateX(5px);
}

.vclickerglow {
	opacity: 0.9;
	background-color: #888888;
}

.itemcontainer {
	width: 100%;
	height: 400px;
	z-index: 499;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.itembox {
		/*border: solid 5px green;*/
	  width: 100%;
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
		position: relative;
	  list-style: none;
	  display: flex;
	  flex-direction: row;
		justify-content: space-around;
	  padding: 0;
	  margin: 0;
}

.itempane {
		/*border: solid 5px blue;*/
		width: 450px;
		display: flex;
		flex-direction: row;
		justify-content: center;
}


.itempanev {
		flex-direction: column;
}


ul {
  list-style-image: url(../img/arrow4.png);
  color: white;
  font-family: opensans, Verdana, Geneva, sans-serif;
  font-size: 1.1em;
  list-style-position: inside;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: left
}

.gitlink {
  cursor: pointer;
  content: "";
  background-image: url("../img/logo/GitHub-Mark-Light-120px-plus.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  margin-top: 0px;
  transform: scale(0.9);
  transition: width 0.3s, height 0.3s, transform 0.3;
}

.gitlink a div {
  width: 100%;
  height: 100%;
}

.gitlink:hover {
  transform: scale(1.15);
}
