@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,400);

html, body{
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	color: #414141;
	background: #d5d8d9;
}

.wrapper{
	width: 500px;
	height: 130px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -250px;
	margin-top: -150px;
	text-align: left;
}

.wrapper p{
	padding-left: 100px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.wrapper a{
	color: #888;
	text-decoration: none;
	background: url(../img/download.svg) no-repeat left center;
	background-size: 16px 16px;
	padding: 0 0 0 20px;
	font-weight: normal;
}

.wrapper a:hover{
	color: #d70000;
	background: url(../img/download-hover.svg) no-repeat left center;
	background-size: 16px 16px;
}

.light{
	font-weight: 300;
}

@media only screen and (max-width: 600px) {
	
	.wrapper{
		width: 100%;
		height: auto;
		margin-left: -50%;
		text-align: center;
	}

	.wrapper p{
		padding-left: 0;
		margin-top: 0;
		padding: 40px 40px 0 40px;
	}

}