	body {
  padding: 20px;
  font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
  background: #e3e3e3;
}
img {
  width: 70%; /* need to overwrite inline dimensions */
  height: auto;
}
h2 {
font-size: 3em;
  margin-bottom: 0.3em;
}

h5 {
	font-size: 1.2em;
	padding-top: 1em
  margin-bottom: 0.5em;
}

h3 {
	font-size: 0.6em;
  font-style: italic;
  text-align: left;	
  text-decoration: none;
  z-index: 1;
  margin-bottom: 6.5em;
}

h4 {
  font-size: 0.6em;
  font-style: italic;
  text-align: center;	
  text-decoration: none;
  z-index: 1;
  position: absolute;
	margin-bottom: -2.5em;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 0em;
    row-gap: 4em;
    column-gap: 0em;
}


/* hover styles */
.location-listing {
  position: relative;
}

.location-image {
  line-height: 0;
  overflow: hidden;
}

.location-image img {
  filter: blur(0px);
  transition: filter 0.3s ease-in;
  transform: scale(1.1);
}

.location-title {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;	
  text-decoration: none;
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 74%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .5s;
  background: rgba(90,0,10,0.4);
  color: white;
  
  /* position the text in t’ middle*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-listing:hover .location-title {
  opacity: 1;
}

.location-listing:hover .location-image img {
  filter: blur(2px);
}


/* for touch screen devices */
@media (hover: none) { 
  .location-title {
    opacity: 1;
  }
  .location-image img {
    filter: blur(2px);
  }
}