@charset "utf-8";

iframe {
  margin: auto;
}

#map {
  height: 450px;
  width: 600px;
  margin: auto;
}

#map p {
  font-family: Verdana,
    Geneva,
    Tahoma,
    sans-serif;
  color: black
}

.myMarker {
  background-color: #4285F4;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
}

.myMarker ::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #4285F4;
}
