body {
    margin: 0;
    padding: 0;
  }

  #map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  
  .map-overlay {
    position: absolute;
    left: 0;
    padding: 10px;
  }

  button {
      -moz-appearance: none;
		  -webkit-appearance: none;
		  -ms-appearance: none;
		  appearance: none;
		  -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	    -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		  -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
      background-color: #fff;
      color: #212931; 
      border: #212931 solid 1px;
      border-radius: 50px;
      padding: 0 3rem;
      margin: 10px;
      text-align: center;
      text-transform: uppercase; 
      font-family: "Source Sans Pro", Helvetica, sans-serif;
		  font-size: 0.8rem;
		  font-weight: 900;
		  letter-spacing: 0.09em;
      height: 4rem;
		  line-height: 3rem;
      display: inline-block;
    }
    button:hover {
			border: #ff914d solid 1px;
      box-shadow: inset 0 0 0 1px #ff914d;
			color: #ff914d !important;
		}