body {
  background: black;
  margin:0;
  padding:0;
  font-family: "Georgia","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","sans-serif";
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

* {
  outline: 0 !important;
}

.App {

}

.Header-nav {
  display: flex;
  align-items: center;
  flex: 1;
}

.Header-nav a {
  color: white;
  opacity:1;
}

.Header-social {
  position: relative;
  color: #333;
  margin-right:15px;
  font-weight: 700;
}
.Header-social:hover {
  color:color;
  text-decoration: none;
}

.Header-social svg {
  font-size: 20px;
  height:22px;
  width:22px;
}

.Header-button {
  background: #142C5A;
  opacity: .8;
  font-size: 14px;
  border-radius: 3px;
  color: white;
  font-weight: 700;
  padding: 0px 10px;
  height: 32px;
  line-height: 32px;
  margin:5px 0px;
  font-family: Helvetica;
}

.Header-button:hover {
  opacity: 1;
  color: white;
  text-decoration: none;
}

.App-loading-indicator {
  position: relative;
  top:10px;
  font-size:16px;
  font-weight: bold;
}

.App-loading-indicator svg {
  height:20px;
  height: 20px;
  position: relative;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
  margin-right: 10px;
  top:5px;
}

@keyframes spin {
  from {
      transform:rotate(0deg);
  }
  to {
      transform:rotate(360deg);
  }
}

.App-scroll-indicator {
  z-index: 1;
  color: white;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left:0;
  right:0;
  transform: scale(1);
	animation: pulse 2s infinite;
  opacity:0;
  text-shadow: 0 0 10px black;
  transition-property: opacity;
  transition-duration: .5s;
}

.App-scroll-indicator a {
  color: white;
}

.App-header-audio {
  display: none;
}

.App-header-images {
  margin-bottom:30px;
  box-shadow: 0 0 10px black;
  display: none;
}

.App-header-images img {
  height:140px;
  width:140px;
  object-fit: cover;
  opacity:.5;
}

.App-header-audio-toggle {
  outline: 0 !important;
  z-index: 1;
  position: relative;
  cursor: pointer;
  background: white;
  border: none;
  border-radius: 30px;
  margin:0px auto;
  line-height:28px;
  font-size:16px;
  font-weight: bold;
  padding: 10px 25px;
  color: black;
}

.App-header-audio-toggle:hover {
  background: #aaa;
}

.App-header-audio-player {
  z-index: 1;
  position: relative;
  margin:0px auto;
  outline: 0 !important;
  display: none;
}

.App-header-audio-toggle svg {
  height:20px;
  height: 20px;
  position: relative;
  top: 5px;
  margin-right:10px;
}


.App-scroll-indicator a {
  text-decoration: underline;
  font-weight:bold;
}

@keyframes pulse {
	0% {
		transform: scale(0.90);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.90);
	}
}

.App-nav {
  height:30px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding:5px;
  position: absolute;
  left:0;
  top:0;
  right:0;
  padding:20px;
}

.App-nav a {
  opacity:.7;
  color: white;
  text-decoration: none;
}
.App-nav a:hover {
  opacity:1;
}

.App-nav img {
  height: 40px;
  filter: brightness(1000);
}

.App-header {
  color: white;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,0,0,.7) 90%, transparent);
  z-index: 1;
  height: 100vh;
  display: flex;
  position: relative;
  padding:0px 20px;
}

.App-header-photos {
}

.App-header-photo {
  position: absolute;
  box-shadow: 0 0 10px 10px rgba(0,0,0,.2);
  filter: brightness(50%);
}

.App-header .Dots {
  position: absolute;
  top: 0;
  left: 0;
}

.App-header .Dots .dot {
  opacity:.1 !important;
}

.App-header-text {
  max-width:940px;
  margin-left:auto;
  margin-right: auto;
  margin-top: calc(50vh - 180px);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px black;
}

h1 {
  font-size: 66px;
  margin:15px
}

h2 {
  margin: 40px 10px;
  font-weight:500;
}

.dek {
  font-size:20px;
  display:inline-block;
  max-width:640px;
  margin:20px auto;
  text-align: left;
}

.byline {
  margin: 8px auto 100px auto;
  color: #aaa;
  margin-top:50px;
}

.byline a {
  color: #aaa !important; 
}

@media only screen and (max-width: 600px) {
  .App-header-text {
    margin-top: 120px;
  }

  h1 {
    font-size: 40px;
  }

  .dek {
    font-size: 16px;
  }

  .byline {
    margin: 0px auto 40px auto;
    font-size:13px;
  }

  h2 {
    font-size:18px;
  }
}

.App-timeline {
  position: relative;
  top: -50px;
  pointer-events: none;
  padding:20px;
}

.App-timeline-item {
  height: 100vh;
  position: relative;
  width: 100%;
}

.App-timeline-item-text {
  font-size:16px;
  color: black;
  position:absolute;
  top:100px;
  left:0;
  right:0;
  background: white;
  margin: 0px auto;
  padding: 25px 25px 40px 25px;
  max-width: 610px;
  z-index: 1;
  border-radius:3px;
  box-shadow: 0 0 10px 10px rgba(0,0,0,.5);
  line-height:1.4em;
  pointer-events: auto;
  min-height: 115px;
}

.App-timeline-item-text p {
  margin-top:0;
}

.App-timeline-item-text a {
  color: #0041a5;
}

.Timeline-audio-toggle {
  display:block;
  outline: 0 !important;
  z-index: 1;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  color: black;
  background: #eee;
  border-radius: 30px;
  margin:25px auto;
  line-height:30px;
  font-size:14px;
  font-weight: bold;
  padding: 8px 25px;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.Timeline-audio-toggle svg {
  height:20px;
  height: 20px;
  position: relative;
  top: 5px;
  margin-right:10px;
  fill: black;
}

.Timeline-audio-toggle:hover {
  color: white;
  background: black;
}


.Timeline-audio-toggle:hover svg {
  fill: white;
}


.Timeline-audio-player {
  display:block;
  margin: 20px auto;
  width: 100%;
  max-width: 300px;
}

.Timeline-scroll-indicator {
  width:100%;
  text-align: center;
  font-size:12px;
  margin-top:25px;
  color:#555;
  position: absolute;
  bottom:20px;
  left:0;
  right:0;
}

.Timeline-scroll-indicator a {
  color:#555;
  text-decoration: underline;
}
.Timeline-scroll-indicator a:hover {
  color:black;
}

.App-stories-container {
  max-width: 920px;
  margin:50px auto 0px auto;
  display: flex;
  justify-content: center;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.App-stories audio {
  width:100%;
  margin-top:5px;
}

.App-story {
  padding:20px;
  max-width:722px;
  margin:0px auto;
  line-height: 1.6;
  font-size:16px;
  position: relative;
}

.App-story-link {
  height:30px;
  width:30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display:flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  cursor: pointer;
  position: relative;
}

.App-story-link svg {
  width:14px;
  opacity:.5;
}

.App-story-link:hover {
  border: 1px solid #666;
}
.App-story-link:hover svg {
  opacity: 1;
}

.App-story-link-copied {
  position: absolute;
  left:40px;
  font-weight: bold;
  font-size:12px;
  display: none;
  white-space: nowrap;
  font-family: Helvetica;
  background:black;
  border-radius: 5px;
  padding:4px 10px 2px 10px;
  color: white;
}

.App-stories-header {
  background:#f1f1f1;
  padding:40px;
  max-width:722px;
  margin:0px auto;
  text-align:center;
  font-size:18px;
}

.App-story-title {
  font-size:40px;
  text-align: center;
}

.App-story-subtitle {
  text-align: center;
  font-weight: bold;
  color: #444;
}

.App-story-text {
  margin-top:40px;
}

.separator {
  height: 1px;
  background: #aaa;
  margin: 10px auto 30px auto;
  max-width: 640px;
}

.media-container {
  line-height: 0;
}

@media only screen and (max-width: 600px) {
  .media-container {
    width: 100% !important;
    float:none !important;
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .caption {
    margin-left:0 !important;
    margin-bottom: 20px !important;
  }
  .nomobile { 
    display: none;
  }
}

.media-container .caption {
  text-align: left;
  line-height: 1em;
  margin:8px 0;
  color: #aaa;
  font-size:13px;
}

.App-stories-nav {
  width: 210px;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  padding-top: 50px;
  padding-right: 40px;
  align-self: flex-start;
  height: auto;
}

@media only screen and (max-width: 900px) {
  .App-stories-nav {
    display: none;
  }
}

.App-stories-nav a {
  display: block;
  padding:0px 7px;
  margin:15px 0px;
  color: black;
  text-decoration: none;
  opacity:.3;
  transition-property: opacity;
  transition-duration: .5s;
}

.App-stories-nav a:hover {
  opacity:1;
}

.App-stories-nav a.selected {
  border-left:3px solid black;
  opacity:1;
}

.App-stories-section {
  color: black;
  z-index:1;
  position: relative;
  background: white;
  padding:50px 0;
  margin-top: 35vh;
}

.App-dots-time {
  position: absolute;
  z-index: 1;
  color: white;
  left:0;
  right:0;
  bottom:50px;
  font-size:30px;
  opacity: .8;
  text-align: center;
  font-weight: bold;
  pointer-events: none;
  text-shadow: 0 0 10px black;
  transition-property: opacity;
  transition-duration: .5s;
}

.App-dots-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 1s;
}


.Dots {
  padding:5px;
  line-height: 0;
  display: flex;
  flex-wrap: wrap;
  min-height:100vh;
}

.item {
  display: inline-block;
  position: relative;
}

.dot {
  background: white;
  border-radius:10px;
  height:7px;
  width: 7px;
  margin: 7px;
  opacity:0;
}

.item.visible {
  cursor: pointer;
}


.item.visible .dot {
  opacity: 1;
}

.item.highlight .dot {
  background: white;
}


.overlay {
  position: absolute;
  top:25px;
  min-width:260px;
  color: white;
  background: black;
  cursor: pointer;
  line-height:1.4em;
  font-size:14px;
  display: none;
  z-index: 100;
  padding:10px;
  border-radius: 3px;
  pointer-events: none;
  border: 1px solid #333;
  transition-property: opacity;
  transition-duration: .5s;
  font-family: Helvetica;
}

.overlay a {
  pointer-events: auto;
  color: white;
  margin-top:5px;
  font-size:12px;
}

.item.visible:hover .dot {
  opacity: 1;
}

