@charset "UTF-8";
/* CSS Document */
body {
	background-color: #FFF;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.container {
  background-color: #FFF;
  font-size: 12px;
  line-height: 1.4em;
	width: 500px;
	display: block;
    margin-left: auto;
    margin-right: auto;
	margin-top: 30px;
}

h1 {
  color: #00A8CB;
  font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 20px;
}
h2 {
  font-size: 14px;
	font-weight: normal;
}
h3 {
  font-size: 13px;
	margin: 0px;
}

div.logo {
	width: 150px;
    margin-left: auto;
    margin-right: auto;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	margin: 20px 0;
}
.tile {
	margin-right: 20px;
	margin-bottom: 25px;
	height: 100px;
	width: 80px;
	text-align: center;
	font-weight: bold;
}
.tooltip:before {
	content: attr(data-text);
}
.tooltip:hover:before {
  display:block;
}
.tile a {
	text-decoration: none;
	opacity: .6;
}
.tile a:link {
	color: #000;
}
.tile a:visited {
	color: #000;
}
.tile a:active {
	color: #000;
}
.tile a:hover {
	color: #000;
	opacity: 1;
}
