body {
  background-color: black;
  color: white;
}

a {
  color: white;
}

a:visited {
  color: white;
}

.flex-credits {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
}

.flex {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}

img {
  /*width:250px;*/
  height: auto;
  margin: 20px;
}

#story-image {
  /*width:250px;*/
  height: 200px;
  text-align: center;
}

#story-map {
  /*width:250px;*/
  height: 200px;
  text-align: center;
}

#flex-box {
  margin-top: 82px;
}

#story {
  width: 75%;
}

#images {
  height: 405px;
}

iframe {
  width: 100%;
  height: 400px;
  max-height: 400px;
  overflow-y: scroll;
}

table {
  margin: auto;
}

button {
  width: 100%;
  height: 70px;
  background-color: darkblue;
  color: cornsilk;
  border-radius: 10px;
}

h1, h3 {
  text-align: center;

}

#title {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 82px;
  background-color: black;
}

/*scrollbars*/
::-webkit-scrollbar {
  width: 12px;
  background: transparent;
  border-radius: 12px;
}

::-webkit-scrollbar-button {
  width: 12px;
  background: transparent;
}

::-webkit-scrollbar-track {
  width: 12px;
  background: black;
  border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
  width: 12px;
  background: black;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  width: 12px;
  background: #1d2638;
  border-radius: 6px;
}

::-webkit-scrollbar-corner {
  width: 12px;
  background: #1d2638;
}

::-webkit-resizer {
  width: 12px;
  background: #1d2638;
}

@media screen and (max-width: 750px) {
  .flex {
    flex-wrap: wrap-reverse;
  }

  #images {
    width:100%;
  }

  #story-image, #story-map {
    margin: 0 auto 5px auto;
    width:48%;
    height:155px;
    overflow:hidden;
  }

  img {
    margin:0;
    width:100%;
  }

  #story {
    width: 100%;
  }

  #images {
    width: 100%;
    display:flex;
    height:auto;
  }


}

