@font-face {
  font-family: 'FuturaMaxi-Bold';
  src: url(futuramaxi-bold.woff2)format('woff2');
}

@font-face {
  font-family: 'Neue Haas Grotest Display Pro Light';
  src: url(nhaasgroteskdspro-45lt.woff2);
}

* {
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

a {
  font-family: FuturaMaxi-Bold;
  font-size: 80px;
  color: black;
  line-height: normal;
  text-decoration: none;
}

h1 {
  font-family: FuturaMaxi-Bold;
  font-size: 80px;
  line-height: normal;
  color: black;
}

h2 {
  font-family: FuturaMaxi-Bold;
  font-size: 80px;
  line-height: normal;
  color: #e4ea04;
}

p {
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  line-height: normal;
  -webkit-text-align: center;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* Section Parameters */
section {
  padding: 30px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

/* Landing Page */
section.landing {
  display: flex;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  background-color: rgba(255, 0, 0, 0);
}

section.landing video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

section.landing .wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.tagline-text-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tagline-text-wrapper-no-color {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tagline-text-wrapper h1 {
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.rotate-device h1 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 80%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  object-fit: contain;
  letter-spacing: -4px;
  text-align: center;
  pointer-events: none;
  line-height: normal;
}

div.title h1 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 465px;
  left: 20px;
  font-size: 40px;
  color: white;
  object-fit: contain;
  line-height: 40px;
  text-align: left;
  letter-spacing: -4px;
  pointer-events: none;
}

div.title-high h1 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 489px;
  left: 139px;
  font-size: 40px;
  object-fit: contain;
  text-align: left;
  letter-spacing: -4px;
  pointer-events: none;
}

div.slogan p {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 690px;
  font-size: 15px;
  color: white;
  letter-spacing: 1px;
  object-fit: contain;
  pointer-events: none;
}

.arrow {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 252px;
  left: 240px;
  transform: rotate(-45deg) scale(0.3);
  object-fit: contain;
  animation: fadeInOut ease-in-out 6s infinite;
  -webkit-animation: fadeInOut ease-in-out 6s infinite;
  -moz-animation: fadeInOut ease-in-out 6s infinite;
  -o-animation: fadeInOut ease-in-out 6s infinite;
  -ms-animation: fadeInOut ease-in-out 6s infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* About Page */
section.about {
  z-index: 2;
  display: flex;
  min-height: 100vh;
  background-color: rgba(15, 11, 51, 0.9);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.about-header h1 {
  z-index: 2;
  position: absolute;
  display: block;
  top: -52px;
  left: 20px;
  font-size: 55px;
  letter-spacing: -4px;
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.about-blurb p {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 67px;
  left: 23px;
  color: white;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
}

/* Listen Page */
section.listen {
  z-index: 3;
  display: flex;
  min-height: 100vh;
  top: 86px;
  background-color: rgba(15, 11, 51, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.listen-header h1 {
  z-index: 3;
  position: absolute;
  display: block;
  top: -48px;
  left: 20px;
  font-size: 55px;
  letter-spacing: -4px;
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.episode001 a {
  z-index: 3;
  position: absolute;
  display: block;
  top: 76px;
  left: 23px;
  font-size: 35px;
  letter-spacing: -2px;
  background: -webkit-linear-gradient(152deg, #ff0085, #ff8900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.episode002 a {
  z-index: 3;
  position: absolute;
  display: block;
  top: 123px;
  left: 23px;
  font-size: 35px;
  letter-spacing: -2px;
  background: -webkit-linear-gradient(152deg, #ff0085, #ff8900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.episode003 a {
  z-index: 3;
  position: absolute;
  display: block;
  top: 170px;
  left: 23px;
  font-size: 35px;
  letter-spacing: -2px;
  background: -webkit-linear-gradient(152deg, #ff0085, #ff8900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Episode 001 */
section.episode001 video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

section.episode001 .wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}

section.episode001 {
  display: flex;
  min-height: 100vh;
  top: 87px;
  background-color: rgba(15, 11, 51, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.episode001-title h1 {
  position: absolute;
  display: block;
  top: 0px;
  left: 20px;
  font-size: 35px;
  letter-spacing: -3px;
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.episode001-slug p {
  position: absolute;
  display: block;
  top: 55px;
  left: 60px;
  text-align: left;
  font-size: 1.5rem;
  color: white;
}

div.episode001-tracklist p {
  position: absolute;
  display: block;
  top: 115px;
  left: 20px;
  text-align: left;
  color: white;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 0 20px 0 0;
}

div.episode001-player {
  position: absolute;
  display: block;
  top: 52px;
  left: 320px;
  transform: scale(1.75);
  overflow: hidden;
}

/* Episode 002 */
section.episode002 video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

section.episode002 .wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}

section.episode002 {
  display: flex;
  min-height: 100vh;
  top: 87px;
  background-color: rgba(15, 11, 51, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.episode002-title h1 {
  position: absolute;
  display: block;
  top: 0px;
  left: 20px;
  font-size: 35px;
  letter-spacing: -3px;
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.episode002-slug p {
  position: absolute;
  display: block;
  top: 55px;
  left: 60px;
  text-align: left;
  font-size: 1.5rem;
  color: white;
}

div.episode002-tracklist p {
  position: absolute;
  display: block;
  top: 115px;
  left: 20px;
  text-align: left;
  color: white;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 0 20px 0 0;
}

div.episode002-player {
  position: absolute;
  display: block;
  top: 52px;
  left: 320px;
  transform: scale(1.75);
  overflow: hidden;
}

/* Episode 003 */
section.episode003 video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

section.episode003 .wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}

section.episode003 {
  display: flex;
  min-height: 100vh;
  top: 87px;
  background-color: rgba(15, 11, 51, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.episode003-title h1 {
  position: absolute;
  display: block;
  top: 0px;
  left: 20px;
  font-size: 35px;
  letter-spacing: -3px;
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.episode003-slug p {
  position: absolute;
  display: block;
  top: 55px;
  left: 60px;
  text-align: left;
  font-size: 1.5rem;
  color: white;
}

div.episode003-tracklist p {
  position: absolute;
  display: block;
  top: 115px;
  left: 20px;
  text-align: left;
  color: white;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 0 20px 0 0;
}

div.episode003-player {
  position: absolute;
  display: block;
  top: 52px;
  left: 320px;
  transform: scale(1.75);
  overflow: hidden;
}

/* Explore Page */
section.explore {
  z-index: 4;
  display: flex;
  min-height: 100vh;
  top: 174px;
  background-color: rgba(15, 11, 51, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.explore-header h1 {
  z-index: 4;
  position: absolute;
  display: block;
  top: -54px;
  left: 20px;
  font-size: 55px;
  letter-spacing: -4px;
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.explore-blurb p {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 67px;
  left: 22px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
  line-height: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

div.explore-blurb a {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 138px;
  left: -1px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  padding: 0 20px 0 0;
  letter-spacing: 1px;
  text-align: left;
  line-height: normal;
}

#jimiwes {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 140px;
  left: -1px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
  line-height: normal;
}

#miamimagic {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 180px;
  left: -1px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
  line-height: normal;
}

#soundcloud {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 220px;
  left: -1px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
  line-height: normal;
}

#instagram {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 260px;
  left: -1px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
  line-height: normal;
}

/* Contact Page */
section.contact {
  z-index: 5;
  display: flex;
  min-height: 100vh;
  top: 260px;
  background-color: rgba(15, 11, 51, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.contact-header h1 {
  z-index: 5;
  position: absolute;
  display: block;
  top: -52px;
  left: 20px;
  font-size: 55px;
  letter-spacing: -4px;
  background-color: #00ffbe;
  background: linear-gradient(
    145deg,
    #00dbff,
    #45ff00,
    #00aeff,
    #6b00ff,
    #fe00ff,
    #006bff,
    #8200ff
  );
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  -o-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 46%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 46%;
  }
}

div.contact-blurb p {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 67px;
  left: 22px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
  line-height: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

div.contact-blurb a {
  position: absolute;
  display: block;
  max-width: 100vw;
  height: 100%;
  top: 138px;
  left: -1px;
  font-family: 'Neue Haas Grotest Display Pro Light';
  font-size: 1.2rem;
  color: white;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 20px 0 0;
  line-height: normal;
  animation: fadeInOut ease-in-out 6s infinite;
  -webkit-animation: fadeInOut ease-in-out 6s infinite;
  -moz-animation: fadeInOut ease-in-out 6s infinite;
  -o-animation: fadeInOut ease-in-out 6s infinite;
  -ms-animation: fadeInOut ease-in-out 6s infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Thank You Page */
section.thankyou {
  z-index: 6;
  display: flex;
  min-height: 100vh;
  background-color: rgba(15, 11, 51, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.sticker-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.sticker-container img {
max-width: 300px;
padding: 0px 20px 0px 20px;
margin-left: auto;
margin-right: auto;
-webkit-animation-name: spin;
-webkit-animation-duration: 6000ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
@-ms-keyframes spin {
from {
-ms-transform: rotate(0deg);
}
to {
-ms-transform: rotate(-360deg);
}
}
@-moz-keyframes spin {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(-360deg);
}
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(-360deg);
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}


.designby-text a {
  z-index: 6;
  position: absolute;
  display: block;
  height: 100%;
  top: 1200px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  letter-spacing: -1px;
  color: white;
}
