@import url('https://fonts.googleapis.com/css?family=Work+Sans&display=swap');

* {
	margin:0;
	padding:0;
	font-family: 'Work Sans', sans-serif;
}

h1 {
	font-family: 'Work Sans', sans-serif;
	color:#666666;
	font-size: 16px;
	font-weight: 300;
	margin-top: 0px;
	margin-bottom: 1px;
}

h2 {
	font-family: 'Work Sans', sans-serif;
	color:#666666;
	font-size: 26px;
	font-weight: 300;
	margin-top: 0px;
	margin-bottom: 1px;
}

p {
	font-family: 'Work Sans', sans-serif;
	color:#666666;
	font-size: 16px;
	font-weight: 300;
	margin-top: 0px;
	margin-bottom: 1px;
}

main {
	width: 100vw;
	height: 100vh;
	background:#FFFFFF;
}

header {
	display:flex;
	flex-direction:row;
	align-items: center;
	box-sizing: border-box;
	padding:20px;
	width:100%;
}

.headerLeft, .headerRight {
	width:50%;
}

.headerLeft img {
	width:200px;
}

.headerRight {
	text-align:right;
}

section {
	width: 100vw;
	height: 75vh;
	margin:0 auto;
	text-align:center;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  grid-row-gap: 20px;
  grid-column-gap: 10px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  list-style: none;
}

.container img {
	width:50px;
}

.container>.item {
  padding: 12px;
  padding:25px 0;
  border: 1px solid #cccccc;
}

.container>.item a,
.container>.item a:visited,
.container>.item a:active {
	text-decoration:none;
}

.container>.item a:hover p {
	color:#00A0B0;
}

.container>.item p {
	padding:25px 0 0 0;
}