
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  font-family: "Inter",sans-serif;
  color: #fff;
}

.nav {
  position: absolute;
  top: 50px;
  right: 90px;
  z-index: 10;
  opacity: 0;
  transition: opacity 5s;
}

.nav.fade-in {
  opacity: 1;
}

.nav a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 0 10px;
  letter-spacing: 3px;
  opacity: .5;
  transition: opacity 1s;
}

.nav a:last-child {
  margin-right: 0;
}

.nav a:hover {
  opacity: 1;
}

.streaming-callouts {
  position: absolute;
  top: 120px;
  right: 90px;
  z-index: 10;
  opacity: 0;
  transition: opacity 5s;
}

.streaming-callouts.fade-in {
  opacity: 1;
}

.streaming-icon {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  display: inline-block;
  opacity: .5;
  transition: opacity 1s;
}

.streaming-icon:hover {
  opacity: 1;
}

.streaming-icon.spotify {
  background-image: url('../img/spotify-emblem.svg');
}

.streaming-icon.apple-music {
  background-image: url('../img/apple-music-emblem.svg');
}

.music-tracks {
  position: absolute;
  top: 200px;
  right: 90px;
  z-index: 10;
  opacity: 0;
  transition: opacity 5s;
  text-align: right;
  line-height: 22px;
}

.music-tracks a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin: 0 0 5px 0;
  letter-spacing: 3px;
  opacity: .5;
  transition: opacity 1s;
}

.music-tracks a:hover {
  opacity: 1;
}

.music-tracks a.playing {
  opacity: 1;
}

.music-tracks.fade-in {
  opacity: 1;
}

#audio-player {
  display: none;
}

#video-player {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  z-index: 1;
  display: none;
}

.video-player-mask {
  background-image: linear-gradient(to right, #000 , transparent);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}

.bg-face {
  background-image: url(../img/bg-face.png);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: top center;
  opacity: 0;
  width: 800px;
  height: 800px;
  transition: opacity 5s;
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: 40px;
}

.bg-face.fade-in {
  opacity: .5;
}

.personas {
  background-image: url('../img/personas.png');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  opacity: 0;
  width: 500px;
  height: 150px;
  left: 200px;
  bottom: 30px;
  transition: opacity 5s;
  z-index: 5;
  position: absolute;
}

.personas.fade-in {
  opacity: 1;
}

.bg-gradient {
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 100% 100%;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 3s;
}

.bg-gradient.fade-in {
  opacity: .8;
}

.bg-gradient-1 {
  background-image: url('../img/gradient-1.png');
}

.bg-gradient-1.fade-in {
  opacity: 1;
}

.bg-gradient-religious-nomad {
  background-image: url('../img/gradient-religious-nomad.png');
}

.bg-gradient-religious-nomad.fade-in {
  opacity: .7;
}

.bg-gradient-viking {
  background-image: url('../img/gradient-viking.png');
}

.bg-gradient-you-and-me {
  background-image: url('../img/gradient-you-and-me.png');
}

.bg-gradient-seesaw {
  background-image: url('../img/gradient-seesaw.png');
}

.bg-gradient-the-dreamer {
  background-image: url('../img/gradient-the-dreamer.png');
}

@media (max-width: 1024px) {
  .bg-face {
    background-size: 60%;
    background-position: bottom center;
    width: 100%;
    height: 800px;
    left: 0;
    bottom: 130px;
  }
  .personas {
    background-size: 70%;
    background-position: bottom center;
    width: 100%;
    height: 150px;
    left: 0;
    bottom: 20px;
  }
  .music-tracks {
    right: 20px;
  }
  .streaming-callouts {
    right: 20px;
  }
  .nav {
    right: 20px;
  }
}

@media (max-width: 720px) {
  .personas {
    height: 100px;
  }
  .bg-face {
    background-size: 80%;
    bottom: 60px;
  }
}
