@import 'https://fonts.googleapis.com/css?family=PT+Sans:400,700';
h1 { 
  display: block;
  text-align: center;
  font-family: "PT Sans";
  margin-top: .75em;
  margin-bottom: 0.5em;
  margin-left: 0;
  margin-right: 0;
  font-size: 60px;
  font-weight: bold;
}

a { 
  display: block;
  text-align: center;
  font-family: "PT Sans";
  margin-top: 1.0 em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-size: 20px;
  /* font-weight: bold; */
}

/* body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: "PT Sans";
  font-size: 60px;
}  */

address { 
  font-style: italic;
  font-size: 36px;
} 

.tiles {
  padding: 6vh 16vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  position: relative;
}

.tile {
  margin: 15px;
  cursor: pointer;
  overflow: hidden;
  width: 18vw;
  height: 18vw;
}
.tile img {
  width: 100%;
  transition: transform 500ms ease;
}
.tile img:hover {
  transform: scale(1.1);
}