* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a, a:visited {
	color: inherit;
}

img {
	border: none;
	vertical-align: middle;
}

body {
	background: url(../images/assets/background.png);
	line-height: 1.5;
	font-size: 16px;
	font-family: Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	letter-spacing: 0px;
	color: #ffffff;
	font-weight: 400;
}

h1, h2, h3, h4 {
	font-weight: 100;
}

p {
	margin-bottom: 1em;
}

small {
	font-size: 85%;
}

/* Site CSS */

.container {
	width: 960px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1000px) {
	.container {
		width: 100%;
	}
}

#header-wrapper {
  text-align: center;
  margin-top: 150px;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
}

#header-wrapper h1 {
	font-size: 5em;
	line-height: 100px;
}

@media screen and (max-width: 480px) {
	#header-wrapper {
		margin-top: 50px;
	}

	#header-wrapper h1 {
		line-height: 80px;
		font-size: 4em;
	}
}

.tiles-slider-wrapper {
	margin: 0 auto;
	width: 800px;
	height: 400px;
}

@media screen and (max-width: 840px) {
	.tiles-slider-wrapper {
		width: 100%;
	}
}

/* Tiles Slider CSS */


.tiles-slider {
   padding: 0;
   list-style-type: none;
   overflow: auto;
   margin-bottom: 0;
   background: #000;
}

.tiles-slider li {
   width: 25%;
   float: left;
   -webkit-transition: transform .3s ease-in-out;
   -moz-webkit-transition: transform .3s ease-in-out;
   transition: transform .3s ease-in-out;
}

.tiles-slider img {
	width: 100%;
}

.tiles-slider li:first-child {
   width: 50%;
}

.shrink-tile {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
   transform: scale(0.5);
   
}

.tiles-slider li:first-child.shrink-tile {
  -webkit-transform: scale(0.25);
  -moz-transform: scale(0.25);
   transform: scale(0.25);
}   
