html{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background: #eee;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	overflow-y: hidden;
	overflow-x: hidden;
	-webkit-box-shadow: inset 0px 0px 250px 50px rgba(0, 0, 0, 0.25);
	-moz-box-shadow:    inset 0px 0px 250px 50px rgba(0, 0, 0, 0.25);
	box-shadow:         inset 0px 0px 250px 50px rgba(0, 0, 0, 0.25);
}

h1{
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 100px;
	color: #fff;
	font-style: italic;
	text-align: center;
	margin: 0;
	padding: 100px 0 100px 0;
	text-shadow: 2px 2px #888;
}

.bold{
	font-weight: 900;
	padding-left: 15px;
	font-style: normal;
}

#contenu{
	display: block;
	margin-left: auto;
    margin-right: auto;
	width: 930px;
	height: 200px;
	//background: #fff;
}

/************************************************
*	Navbar      								*
************************************************/

#tabnav {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
	float: left;
	margin: 20px;
	padding: 0;
}

.pet {
	width: 250px;
	padding: 10px;
	text-align: center;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px #888;
	
	-webkit-transition: all 300ms ease-out;
	   -moz-transition: all 300ms ease-out;
	    -ms-transition: all 300ms ease-out; 
	     -o-transition: all 300ms ease-out;
	        transition: all 300ms ease-out;
}
		
.pet img {
	margin: auto;
	display: block;		
	
	-webkit-transform: scale(0.8);
	   -moz-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	     -o-transform: scale(0.8);		
	        transform: scale(0.8);

	-webkit-transition: all 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
	   -moz-transition: all 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
	    -ms-transition: all 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
	     -o-transition: all 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
	        transition: all 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

.pet:hover {
	background-color: #ddd;
	background-color: rgba(168,200,224,0.15);
	-webkit-border-radius: 10px;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0px 0px 10px #444;
}

.pet:hover img {
	-webkit-transform: scale(0.9);
	   -moz-transform: scale(0.9);
	    -ms-transform: scale(0.9);
		 -o-transform: scale(0.9);
			transform: scale(0.9);
}

h2 {
	font-family: 'Lato', sans-serif;
	font-style: italic;
	font-weight: 300;
	font-size: 25px;
	color: #444;
	margin: 15px 0 0 0;
}

/************************************************
*	Media Queries								*
************************************************/

@media only screen and (max-width: 960px){
	h1{
		font-size: 90px;
	}
	h2 {
		font-size: 20px;
	}
	#contenu{
		width: 780px;
	}
	.pet {
		width: 200px;
	}
}

@media only screen and (max-width: 800px){
	h1{
		font-size: 70px;
		padding: 80px 0 80px 0;
	}
	h2 {
		font-size: 17px;
	}
	#contenu{
		width: 630px;
		height: 200px;
	}
	.pet:hover img {
		-webkit-transform: scale(0.8);
		   -moz-transform: scale(0.8);
			-ms-transform: scale(0.8);
			 -o-transform: scale(0.8);
				transform: scale(0.8);
	}
	.pet img {
		-webkit-transform: scale(0.7);
		   -moz-transform: scale(0.7);
			-ms-transform: scale(0.7);
			 -o-transform: scale(0.7);		
				transform: scale(0.7);
	}
	.pet {
		width: 150px;
	}
}

@media screen and (max-height: 550px){
	h1{
		padding: 20px 0 20px 0;
	}
}

@media screen and (max-width: 960px) and (max-height: 520px){
	h1{
		padding: 20px 0 20px 0;
	}
}

@media screen and (max-width: 800px) and (max-height: 450px){
	h1{
		padding: 20px 0 20px 0;
	}
}