﻿html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	margin: 0;
	background-color: grey;
	font-family: 'Liberation Sans', Arial, sans-serif;
}

h1 {
	text-align: center;
}

.grid {
	margin: 0 2em 2em;
	padding: 1em ; 
	background-color: #FFFFFF;
	
}

.grid-item {
	padding: 15px;
	max-width: 180px;
	text-align: center;
	display:inline-block;
}
a { text-decoration: none; color: black;}

.grid-item-2 {
	max-width: 360px;
	text-align: center;
}

.grid-item-3 {
	max-width: 600px;
}

.grid-item p {
	margin: 0;
	padding: 0.5em;
	background-color: #F0F0F0;
}

A IMG { 
	-ms-transform: none; /* IE 9 */
    -webkit-transform: none; /* Safari */
    transform: none;
	
}

A:hover IMG { 
	-ms-transform: scale(1.1) translate(0, -10px); /* IE 9 */
    -webkit-transform: scale(1.1) translate(0,-10px); /* Safari */
    transform: scale(1.1) translate(0, -10px);
	 box-shadow: 0px 0px 20px #444444;
	
}

IMG {
	 -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
 }