/**
 * Demo Styles
 Source:  https://codepen.io/cbracco/pen/zekgx  A PEN by Chris Bracco
 */

html {
  height: 100%;
  box-sizing: border-box;
}

.bg {
	background: url("2005Midtown.jpg");
	height: 100%;
	opacity: 0.85;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}
/* Universal Box Sizing with Inheritance 
Vendor prefix to support older browsers of Safari (<5.1), Chrome (<10) and Firefox (<29) */

body {
  position: relative;
  margin: 0;
  padding-bottom: 5rem;
  min-height: 100%;
  font-family: 'Heebo', Times New Roman, sans-serif;
  font-size: 18px;
}

.map {
	background-color: #dceaf3;
  margin: 0 auto;
  padding: 64px 12px 15px 12px;

  max-width: 640px;
  width: 94%;
}

.map h1 {
  margin-top: 0;
}



/**
 * Footer Styles
 */

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #efefef;
  text-align: center;
  font-family: 'Heebo', Times New Roman, sans-serif;
}