body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.responsive-iframe-container {
  position: relative;
  /* padding-bottom: 56.25%; 16:9 aspect ratio */
  /* height: 0; */
  max-height: 25vh;
  max-width: 100vw;
  min-width: 20vh;
  height: 30vh;
  aspect-ratio: 16 / 9;
}
.responsive-iframe-container iframe {
  position: absolute;
  /* width: 50vw; */
  max-height: 25vh;
  max-width: 95vw;
  /* min-width: 20vh; */
  height: 30vh;
  aspect-ratio: 16 / 9;
  left: 0;
  top: 0;
}

.menu {
  position: absolute;
  top: 10px;
  right: -400px;
  background: white;
  padding: 10px;
  z-index: 1;
  display: inline;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
  transition: 0.3s ease;
}

nav {
  padding: 1rem;
  display: flex;
  background-color: rgb(34, 37, 49);
}

.ham-menu {
  height: 50px;
  width: 40px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: #003310;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span {
  background-color: rgb(112, 0, 0);
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu.active {
  right: 0;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
