html, body {
  height: 100vh;
}

body {
	font-family: "Roboto, Helvetica Neue",Helvetica,Arial,sans-serif;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin: 0;
}

.container {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100vh
}

.index-list {
	background: top center no-repeat url('index-images/pixm-logo.png');
	background-size: 100px;
	display: flex;
	flex-direction: column;
	width: 25%;
	left: 0;
    margin-top: 1%;
    margin-bottom: 2%;
	text-align: center;
	padding-top: 10%;
}

.index-list h3 {
	font-size: 30px;
    padding: 0px;
    margin: 0px;
}

.index-list h4 {
	font-size: 20px;
    padding: 0px;
    margin: 0px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.index-list ul {
	list-style-type: none;
	padding: 0px;
	margin: 10px;
}

.index-list span {
	font-size: 15px;
    font-weight: 900;
    background-color: lightgrey;
}

.empty-space {
	background: linear-gradient(90deg, rgba(168,179,221,1) 0%, rgba(110,176,225,1) 100%);
	width: 75%;
	right: 0;
}

.empty-space img {
	position: absolute;
}

.mobile-lightblue {
	top: 10%;
    left: 30%;
	height: 150px;
}

.desktop-grey {
	top: 25%;
    left: 40%;
	height: 250px;
}

.mocks-blue {
	top: 60%;
    left: 35%;
	height: 170px;
}

.pixm-grey-hexs {
	top: 40%;
    left: 60%;
	height: 300px;
}

@media only screen and (max-device-width: 600px) {
	.index-list {
		background: top center no-repeat url('index-images/pixm-logo.png'), bottom center no-repeat url('index-images/pixm-grey-hexs.png');
		background-size: 100px, 250px;
		width: 100%;
		padding-top: 35%;
	}
	
	.empty-space {
		display:none;
	}
}