@import url("https://use.typekit.net/qgs4tgp.css");

a{
  color:whitesmoke;
}

.title {
  font-size: 6vw;
  margin: 60vh 2vw 0 2vw;
}

.subtitle {
  margin: 0% 2% 2% 2%;
  font-size: 3vw;
}

.slide-text {
  position: absolute;
  bottom: 1px;
  font-size: 1.2em;
  max-width: 90%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px;
  margin-left: 5%;
  margin-right: 5%;
  box-shadow: 5px 5px 5px black;
}

.final-slide-text {
  position: relative;
  top:30vh;
  font-size: 1.5em;
  max-width: 80%;
  text-align: center;
  padding: 5px;
  margin-left: 10%;
  margin-right: 10%;
  box-shadow: 5px 5px 5px black;
}

body {
  font-family: "Proxima-Nova", sans-serif;
  font-size: 12px;
  background-color: black;
}

.swiper-loop {
  width: 95%;
  height: 95vh;
}
.swiper-loop .swiper-slide {
  background-color: black;
  background-size: cover;
  background-position: center;
  display: block;
  color: white;
  text-shadow: 0 0 6px black;
}
.swiper-loop .swiper-button-next,
.swiper-loop .swiper-button-prev {
  border: 0;
  background: transparent;
  color: white;
  text-shadow: 0 0 6px black;
}

.swiper-counter-loop {
  z-index: 100;
  position: fixed;
  top: 0;
  display: inline-flex;
  align-items: center;
}
.swiper-counter-loop .swiper-progress-bar {
  width: 95vw;
  height: 3vh;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 0.5rem;
}
.swiper-counter-loop .swiper-progress-bar .progress {
  position: absolute;
  left: 0;
  height: 0.5rem;
  background: white;
  border-radius: 4px;
}


[data-audio]{cursor:pointer;}
[data-audio].on{color: red;}
/*https://fortawesome.github.io/Font-Awesome/cheatsheet/*/
[data-audio]:before{content:"\f144";}
[data-audio].on:before{content:"\f28b";}



.fa {
  z-index:5;
  position:fixed;
  right:0.5em;
  top:1rem;
  background-color: transparent;
  border-radius:100%;
  color:rgb(147,22,38);
  cursor: pointer;
  position:absolute;
  font-size:7vh !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: pulse 2s infinite;
 }

 @keyframes pulse {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* mouse over link */
.audio-image a:hover {
    color: grey;
}