@font-face {
  font-family: Joyride Extended Outline;
  src: url(joyride-extended-outline.woff2);
}

@font-face {
  font-family: Joyride;
  src: url(joyride.woff2);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  min-height: 100%;
}

body {
  font-family: futura, gotham, arial, helvetica, sans-serif;
  font-size: 50px;
  margin: 0;
  padding: 0;
  background-color: #000000;
}

a {
  text-decoration: none;
  color: white;
}
h1 {
  font-family: Joyride;
  font-size: 85px;
  color: rgb(255, 255, 255);
}

h2 {
  font-family: Joyride Extended Outline;
  font-size: 65px;
  color: rgb(255, 255, 255);
}

h3 {
  font-family: Joyride;
  font-size: 35px;
  color: rgb(255, 255, 255);
}

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

/* Content on Landing Page */
section.landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.logo {
  height: auto;
  width: auto;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  object-fit: contain;
  transform: scale(0.15);
  bottom: 50%;
  top: 50%;
  animation: fadeIn ease-in 4s;
  -webkit-animation: fadeIn ease-in 4s;
  -moz-animation: fadeIn ease-in 4s;
  -o-animation: fadeIn ease-in 4s;
  -ms-animation: fadeIn ease-in 4s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.1;
  }
}

.mouse {
  margin: 50px auto 50px auto;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mouse-icon {
  width: 25px;
  height: 45px;
  border: 2px solid white;
  border-radius: 15px;
  cursor: pointer;
  position: fixed;
  text-align: center;
  bottom: 50px;
}

.mouse-wheel {
  height: 6px;
  margin: 2px auto 0;
  display: block;
  width: 3px;
  background-color: white;
  border-radius: 50%;
  animation: 1.6s ease infinite wheel-up-down;
  -o-animation: 1.6s ease infinite wheel-up-down;
  -moz-animation: 1.6s ease infinite wheel-up-down;
  -webkit-animation: 1.6s ease infinite wheel-up-down;
}

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}

@-moz-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}

@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}

/* Content on Music Page */
section.music {
  z-index: 2;
  min-height: 100vh;
  display: flex;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.artist {
  z-index: 2;
  position: absolute;
  display: flex;
  user-select: none;
  object-fit: contain;
  transform: scale(0.35);
  left: 0%;
  right: 100%;
  bottom: -650px;
}

.musicplayer {
  z-index: 2;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.5);
  left: 65%;
}

div.streamtext h1 {
  z-index: 2;
  position: absolute;
  display: block;
  top: -13px;
  left: 20px;
  background: -webkit-linear-gradient(152deg, #0032ff, #00ff64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.thenewsingletext h3 {
  z-index: 2;
  position: absolute;
  text-align: left;
  top: 90px;
  left: 250px;
  line-height: 30px;
   animation: fadeInNewSingle ease-in 6s;
  -webkit-animation: fadeInNewSingle ease-in 6s;
  -moz-animation: fadeInNewSingle ease-in 6s;
  -o-animation: fadeInNewSingle ease-in 6s;
  -ms-animation: fadeInNewSingle ease-in 6s;
}

@keyframes fadeInNewSingle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeInNewSingle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInNewSingle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeInNewSingle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeInNewSingle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

div.hightext h2 {
  z-index: 2;
  position: absolute;
  text-align: center;
  transform: rotate(-90deg);
  left: 52%;
  top: 44%;
  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;
  }
}

/* Content on Contact Page */
section.contact {
  z-index: 3;
  min-height: 100vh;
  display: flex;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

div.contacttext h1 {
  z-index: 3;
  position: absolute;
  display: block;
  top: 8px;
  left: 20px;
  background: -webkit-linear-gradient(152deg, #ff0085, #ff8900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.samsondertext h3 {
  z-index: 3;
  position: absolute;
  text-align: left;
  top: 110px;
  left: 350px;
  animation: fadeInContact ease-in 10s;
  -webkit-animation: fadeInContact ease-in 10s;
  -moz-animation: fadeInContact ease-in 10s;
  -o-animation: fadeInContact ease-in 10s;
  -ms-animation: fadeInContact ease-in 10s;
}

@keyframes fadeInContact {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeInContact {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInContact {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeInContact {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeInContact {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

div.instagramtext h2 {
  z-index: 3;
  position: absolute;
  top: 45%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

div.emailtext h2 {
  z-index: 3;
  position: absolute;
  top: 65%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

/* Hide section.player on Desktop */
@media screen and (min-width: 500px) {
  
section.player {
  display: none !important;
}
}