body {
  margin: 0;
  border-width: 0;
  box-sizing: border-box;
  height: 100vh;

  font-family: 'Josefin Sans', sans-serif;
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-weight: 200;
}

.intro {
  height: 100vh;
  position: relative;
  text-align: center;
  color: white;
  background-color: #101010;
}

.intro-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5em;
}

.intro-subtitle {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
}
.map-container {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: -100;
}

.map {
  height: 100%;
}

.slides {
  margin-top: -30vh;
}

.slide {
  margin-top: 90vh;
  margin-bottom: 90vh;
  margin-left: auto;
  margin-right: 2rem;
  padding: 1rem;
  box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.5);
  border: 1px solid gray;
  border-radius: 0.5rem;

  width: 25rem;

  background-color: #F2F7E2;
  opacity: .85;
  color: black;
}

}
.slide:first-child {
  margin-top: 0;
}

.slide:last-child {
  margin-bottom: 40vh;
}

.slide-controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  column-gap: 0.5rem;

  width: 100%;
}

.slide-nav-button {
  transition: all 0.1s;

  padding: 0;
  margin: 1rem;
  width: 4rem;
  height: 3rem;
  border: 1px solid #888;
  border-radius: 0.25rem;

  background-color: #eee;
  font-size: 1.5em;
}

.slide-nav-button:hover {
  background-color: #444;
  color: #fff;
}

.slide-nav-select {
  min-width: 0;
}
