body {
  padding: 0px;
  margin: 0px;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}

#map {
  height: 200px;
  width: 100vw;
  position: absolute;
  border-bottom: 3px solid orange;
  top: 0;
  left: 0;
}

#narration {
  position: absolute;
  top: 203px;
  width: 100vw;
  height: calc(100vh - 203px);
  z-index: 80;
  border-right: 7px solid #FCA310;
}

#contents {
  padding: 0;
  width: 100%;
  margin-top: 0; /*Adjust if Title header needs more space */
  height: 100%; /* Adjust to fit max Description length, one setting for all; alternative is 100% */
  overflow-y: scroll;
  overflow-x: hidden;
  background: #ddd
}

#top {
  height: 40px;
  margin: 0;
}

#space-at-the-bottom {
  height: 200px;
  margin: 0;
  text-align: center;
  padding-top: 150px;
  background-color: #111;
  background-image: url(../media/lion-city-hero-2.jpg);
  background-size: cover;
  color: rgb(0, 0, 0) !important;
}
#space-at-the-bottom a {
  color: white !important;
}

#title {
  position: absolute;
  left: 0;
  top: 203px;
  background-color: black !important;
  width: 100vw;
  z-index: 100;
  margin: 0;
  padding: 0;
  visibility: hidden;
  font-weight: bold;
  text-align: center;
  background-image: url(../media/lion-city-hero-2.jpg);
  background-size: cover;
  border-bottom: 7px solid #FCA310;
}

.chapter-container {
  /* margin + padding = chapterContainerMargin in script.js */
  /* Important for scrolling! */
  margin: 50px 0 0 0;
  padding: 20px 0 0 0;
  text-align: center;
  min-height: 90%;
}

.chapter-container img {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;

  /* Three lines that center vertically */
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.img-container {
  margin: 0;
  margin-bottom: 5px;
  height: 200px;
  max-height: 200px;
  width: 100%;
}

.audio-container {
  margin: 0;
  margin-bottom: 5px;
  height: 60px;
  max-height: 60px;
  width: 100%;
}

.chapter-header {
  display: block;
  text-align: center;
  font-size: 1.5em;
  padding: 0 5px;
  font-weight:800;
  text-transform: uppercase;
}

.source {
  font-size: 9pt;
  font-style: italic;
  color: gray;
}
a.source:visited {
  color: grey;
}

.description {
  border-top:3px solid #FCA310;
  margin: 20px;
  text-align: left;
  font-size: 11pt;
  padding: 20px;
}

.in-focus {
  opacity: 1.0;
  background-color: #f0f0f0;
}

.out-focus {
  opacity: 0.3;
}

.leaflet-control-attribution {
  visibility: hidden;
  /* display: none !important; */
}

.leaflet-marker-icon {
  opacity: 0.75;
}

/*
  By default, current (active) marker is orange.
  If you want to change the color, see options here: https://github.com/coryasilva/Leaflet.ExtraMarkers/blob/master/src/assets/css/leaflet.extra-markers.css
*/
.marker-active {
  background-position: -72px 0 !important;
}

/* Storymap logo image above the title */
#logo {
  height: 120px;
  line-height: 30px;
  text-align: center;
  padding: 10px;
  max-width: 100%;
  background-color: rgb(0, 0, 0);
  position: relative;
}

#logo img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

#header {
  padding: 5px 0;
  text-align: center;
  color: #333;
}

/* Storymap title & subtitle */
h1 {
  margin: 0;
  font-size: 1.5em;
}

h2 {
  margin: 0;
  font-size: 1.1em;
  font-weight: normal;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

#home-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black !important;
  z-index: 1;
}