@font-face {
    font-family: 'Dragon is Coming';
    src: url('../fonts/DragonisComing.woff2') format('woff2'),
        url('../fonts/DragonisComing.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
        url('../fonts/BebasNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ChunkFive';
    src: url('../fonts/ChunkFive-Regular.woff2') format('woff2'),
        url('../fonts/ChunkFive-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
  height: 100%;
}

body {
  text-align: center;
  background-image: url('../img/desktop/bg-pattern-2.png');
  background-repeat: repeat-x;
  background-position: center -80px;
  background-color: #200809;
  height: 100%;
}

main {
  position: relative;
  width: 960px;
  margin: 0 auto;
}

.f-bebasneue {
  font-family: 'Bebas Neue', sans-serif;
}

.f-chunkfive {
  font-family: 'ChunkFive', serif;
}

.f-dragon {
  font-family: 'Dragon is Coming', sans-serif;
}

.zender {
  position: relative;
  width: 100%;
  height: 667px;
  background-image: url('../img/desktop/zender.png');
  background-position: center -80px;
  background-repeat: no-repeat;
}

.header {
  font-size: 96px;
  line-height: 120px;
  color: #200809; 
  text-align: center;
}

.header img {
  margin: 0 auto;
}

.rays {
  position: absolute;
  top: 140px;
  left: 365px;
  width: 230px;
  height: 131px;
  background-image: url('../img/desktop/rays.png');
  background-size: contain;
  animation: rays 2s infinite;
  opacity: 0;
}

.rays.off {
  display: none;
}

.amplitude-volume-slider {
  width: 80%;
  height: 2px;
  background: #d41f1f;
  border-radius: 5px;
  -webkit-appearance: none; /* For iOS Safari */
}

.amplitude-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.ribbons {
  position: relative;
  top: -80px;
  background-image: url('../img/mobile/ribbons.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 800px;
  margin: 0 auto;
  
}

.ribbon-left {
  position: absolute;
  left: 29px;
  top: 43px;
  width: 260px;
  height: 57px;
  color: #d41f1f;
  font-size: 40px;
  text-align: center;
}

.ribbon-right {
  position: absolute;
  right: 29px;
  top: 43px;
  width: 260px;
  height: 57px;
  color: #d41f1f;
  font-size: 40px;
  text-align: center;
}

img.stars-left {
  position: absolute;
  left: 80px;
  top: 120px;
  width: 200px;
}

img.stars-right {
  position: absolute;
  right: 80px;
  top: 120px;
  width: 200px;
}

.vinyl {
  position: relative;
  top: -16px;
  width: 176px;
  height: 173px;
  background-image: url('../img/desktop/vinyl.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  cursor: pointer;
}

.vinyl.amplitude-playing {
  animation: spin 3s linear infinite;
}

.metadata {
  position: relative;
  top: -60px;
}

.artist { 
  color: #fff; 
  font-size: 40px; 
  line-height: 40px;
}

.songtitle { 
  color: rgba(255,255,255,.75); 
  font-size: 32px; 
  line-height: 32px;
}

.dj { 
  color: rgba(255,255,255,.5); 
  font-size: 24px; 
  line-height: 24px;
}


@keyframes rays {
  0% {
    opacity: 0;
  }
  65% {
    opacity: .8;
  }
  100% {
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}