@font-face {
  font-family: 'helvetica-now';
  src: url('./assets/HelveticaNowDisplayXBlk.otf');
}

@font-face {
  font-family: 'helvetica-now-italic';
  font-style: italic;
  src: url('./assets/HelveticaNowMicroLtIt.otf');
}

body {
  font-family: 'helvetica-now';
  margin: 0;
  overflow: hidden;
  width: 100%;
}

#escandaloso-tooltip,
#mosel-tooltip,
#quelle-tooltip {
  display: none;
}

.flex {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  align-items: baseline;
  position: relative;
  overflow: hidden;
}

#touch-screen-to-start {
  position: absolute;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.6);
  z-index: 1;
  cursor: pointer;
}

#touch-the-artists-container {
  display: none;
}

#touch-the-artists {
  position: absolute;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.6);
}

.touch-circle.left {
  left: 7%;
}

.touch-circle.right {
  right: 7%;
}

.touch-circle {
  position: absolute;
  z-index: 1;
  border: 1px dashed #fff;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-animation: rotating 12s linear infinite;
  -moz-animation: rotating 12s linear infinite;
  -ms-animation: rotating 12s linear infinite;
  -o-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
  background-color: rgba(0,0,0,.4);
}

#touch-the-artists-container .touch-circle {
  background-color: unset;
}

.touch-circle .text {
  color: #fff;
  -webkit-animation: rotating-inverse 12s linear infinite;
  -moz-animation: rotating-inverse 12s linear infinite;
  -ms-animation: rotating-inverse 12s linear infinite;
  -o-animation: rotating-inverse 12s linear infinite;
  animation: rotating-inverse 12s linear infinite;
  height: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.touch-circle .text p {
  position: absolute;
  top: 0;
  margin: 0;
}

.touch-circle .text p.blur-text {
  filter: blur(13px);
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotating-inverse {
  from {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes rotating-inverse {
  from {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

img {
  position: absolute;
  filter: blur(5px);
  top: 50px;
  transition: ease-in .4s;
}

img.active {
  filter: blur(0px);
}

.canvas-game {
  background-color: #bf9895;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: flex;
  justify-content: center;
  background-position: left;
  animation-timing-function: cubic-bezier(0.26, 0.23, 0.37, 0.44);
  animation: cloud 50s infinite;
  overflow: hidden;
  position: relative;
}

div#clouds {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@keyframes cloud {
  50% {background-position: right;}
}

strike {
  color: #b15e55;
}

.tooltip {
  position: relative;
  height: 20px;
  padding: 8px 20px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 19px;
  animation: bounce 5s infinite;
  -webkit-animation: bounce 5s infinite;
  -moz-animation: bounce 5s infinite;
  -o-animation: bounce 5s infinite;
  letter-spacing: 1px;
}

.tooltip.active {
  animation: none;
	-webkit-animation: none;
	-moz-animation: none;
	-o-animation: none;
}

.tooltip:after {
  content: '';
  width: 15px;
  height: 15px;
  background: #000;
  position: absolute;
  transform: rotate(45deg);
  top: 28px;
  left: 9px;
}

.tooltip.quelle {
  top: 28px;
}

.tooltip.quelle .tooltip:after {
  top: -7px;
  left: 23px;
}

.tooltip.escandaloso {
  position: absolute;
  top: 30%;
  right: 20px;
}

.tooltip.mosel {
  left: 80px;
  position: absolute;
  top: 80px;
}

.tooltip.mosel:after {
  left: 60px;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
	48% {-webkit-transform: translateY(-10px);}
	70% {-webkit-transform: translateY(-5px);}
}
 
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-10px);}
	60% {-moz-transform: translateY(-5px);}
}
 
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-10px);}
	60% {-o-transform: translateY(-5px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-10px);}
	60% {transform: translateY(-5px);}
}

#quelle {
  max-width: 1100px;
}

#escandaloso {
  transform: translateX(53%);
  max-width: 900px;
  top: 150px;
}

#mosel {
  transform: translateX(-53%);
  max-width: 900px;
  top: 150px;
}

.creditos {
  position: absolute;
  bottom: -6px;
  text-align: center;
  color: #bf9895;
  text-transform: uppercase;
  display: flex;
  font-size: 14px;
  letter-spacing: 1px;
  left: -10000px;
  animation: ease-in-out 1s;
  z-index: 10;
}

.creditos a {
  color: #bf9895;
}

.creditos h1 {
  padding-right: 15px;
  white-space: nowrap;
  margin: 0;
}

.creditos h1.spotify a {
  /*color: #1ED760;*/
}

.creditos-mobile {
  display: none;
}

@media screen and (max-width: 1330px) {
  #escandaloso {
    transform: translateX(50%);
  }
  
  #mosel {
    transform: translateX(-50%);
  }
}


@media screen and (max-width: 1160px) {
  #quelle {
    max-width: 900px;
  }
  
  #escandaloso {
    max-width: 700px;
  }
  
  #mosel {
    max-width: 700px;
  }
  
  body.ipad-pro #quelle {
    top: 200px;
  }

  body.ipad-pro #escandaloso {
    top: 314px;
  }

  body.ipad-pro #mosel {
    top: 314px;
  }
}

@media screen and (max-width: 900px) {
  #quelle {
    max-width: 800px;
  }
  
  #escandaloso {
    max-width: 600px;
  }
  
  #mosel {
    max-width: 600px;
  }
}


@media screen and (max-width: 850px) {
  .tooltip {
      display: none !important;
  }
  .creditos-mobile {
      display: block;
  }
  #quelle {
    max-width: 800px;
    top: 200px;
  }
  
  #escandaloso {
    transform: translateX(40%);
    top: 50px;
    max-width: 600px;
  }
  
  #mosel {
    transform: translateX(-40%);
    top: 70px;
    max-width: 600px;
  }
  body.ipad #escandaloso {
    top: 70px;
  }

  body.ipad #mosel {
    top: 90px;
  }
  .tooltip {
    height: 12px;
    font-size: 8px;
    letter-spacing: 0.5px;
    line-height: 12px;
  }
  .tooltip:after {
    top: -5px;
  }
  .tooltip.mosel:after {
    left: 52px;
  }
  .tooltip.quelle {
    top: 80%;
  }
  .tooltip.mosel {
    top: 70%;
    left: 10px;
  }
  .tooltip.escandaloso {
    right: 10px;
  }
}

@media screen and (max-width: 700px) {
  #quelle {
    max-width: 700px;
    top: 200px;
  }
  
  #escandaloso {
    max-width: 500px;
  }
  
  #mosel {
    max-width: 500px;
  }
}

@media screen and (max-width: 610px) {
  #quelle {
    max-width: 450px;
    bottom: -200px;
    top: inherit;
  }
  
  #escandaloso {
    max-width: 350px;
    bottom: 0;
    top: inherit;
  }
  
  #mosel {
    max-width: 350px;
    bottom: 0;
    top: inherit;
  }
  .touch-circle.left {
    left: 1%;
  }
  .touch-circle.right {
    right: 1%;
  }
  .touch-circle {
    height: 100px;
    width: 100px;
  }
  .touch-circle .text {
    height: 14px;
  }
  .touch-circle .text p {
    font-size: 9px;
  }
}

@media screen and (max-width: 450px) {
  #quelle {
    max-width: 470px;
    bottom: -166px;
  }
  
  #escandaloso {
    max-width: 400px;
    transform: translateX(31%);
  }
  
  #mosel {
    max-width: 400px;
    transform: translateX(-31%);
  }
  .tooltip.escandaloso:after {
    top: 20px;
    left: 111px;
  }
  .tooltip.mosel:after {
    left: 8px;
  }
  .tooltip.escandaloso {
    top: 15%;
  }
}

@media screen and (max-width: 380px) {
  #quelle {
    max-width: 500px;
    bottom: -255px;
  }
  
  #escandaloso {
    max-width: 430px;
    transform: translateX(25%);
  }
  
  #mosel {
    max-width: 430px;
    transform: translateX(-25%);
  }
}

@media screen and (max-width: 350px) {
  #quelle {
    max-width: 400px;
    bottom: -173px;
  }
  
  #escandaloso {
    max-width: 350px;
    transform: translateX(25%);
  }
  
  #mosel {
    max-width: 350px;
    transform: translateX(-25%);
  }
}

@media (min-aspect-ratio: 8/5) {
  img {
    top: 50px !important;
  }
}

@media (max-aspect-ratio: 3/2) {
  img {
    bottom: 0;
  }
}
