/* CSS Document */

body{
	background-color: #2e2d2c;
	margin: 0;
}
.container{
	display: grid;
	height: 100vh;
	grid-template-columns: auto;
	grid-template-rows: auto;
}
.icons{
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 35px;
}
.item-logo{
	grid-column-start: 1;
	grid-column-end: 1;
	grid-row-start: 1;
	grid-row-end: 1;
	justify-self: center;
	align-self: center;
}
/*.item-icons{
	grid-column-start: 1;
	grid-column-end: 1;
	grid-row-start: 3;
	grid-row-end: 3;
	justify-self: end;
	align-self: end;
}*/
.logo{
	width: 500px;
}
.icon{
	width: 100px;
	height: 100px;
	margin: 0px 15px 15px 15px;
}

@media only screen and (max-width: 1245px) and (orientation: portrait) {

	.container{
		height: 80vh;
	}
	.icon{
		width: 150px;
		height: 150px;
		margin: 10px 10px 10px 10px;
	}

}