/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Import Babas Neue font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

/* General styles */
* {
  margin: 0;
  padding: 0;
}

html,
#maxWidthMobileWrapper {
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-color: orange black;
  scrollbar-width: thin;
}


body {
  background: -o-linear-gradient(95.54deg, #020410 1.77%, rgba(0, 0, 0, 0) 30.69%);
  background: linear-gradient(354.46deg, #020410 1.77%, rgba(0, 0, 0, 0) 30.69%);
  font-family: 'Bebas Neue', cursive;
  color: rgb(220, 215, 215);
  background-color: #020410
}

h1,
h2,
h3 {
  font-family: 'Audiowide', cursive;
  z-index: 999;
}

p {
  z-index: 999;
}

a {
  text-decoration: none;
  color: #333;
}

span, .active {
  color: orange;
}

.glass {
  background-color: #261f4b5d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 100;
}

.background-stars {
  background-image: url('');
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.star {
  position: absolute;
  background-color: white;
  -webkit-animation: twinkle 0.1s alternate infinite;
  animation: twinkle 0.1s alternate infinite;
  border-radius: 1000px;
  z-index: 1000;
}

@-webkit-keyframes twinkle {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }

  25%,
  75% {
    opacity: 0.5;
  }

  40%,
  60% {
    opacity: 0.3;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }

  25%,
  75% {
    opacity: 0.5;
  }

  40%,
  60% {
    opacity: 0.3;
  }
}

.contact{ /* The will of the world contacts you... */
  cursor:pointer;
}

/* Landing pad */
header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#020410)), url(../media/backgrounds/stars.png);
  background-image: -o-linear-gradient(top, transparent, #020410), url(../media/backgrounds/stars.png);
  background-image: linear-gradient(to bottom, transparent, #020410), url(../media/backgrounds/stars.png);
  background-size: cover;
  background-repeat: no-repeat;
}

header #aboutShort {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-85%, -50%);
  -ms-transform: translate(-85%, -50%);
  transform: translate(-85%, -50%);
}

header #aboutShort p{
  font-size: 21px;
}

header #aboutShort h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  letter-spacing: -1px;
  font-weight: 400;
  line-height: 85px;
  font-size: 52px;
  width: 850px;
  margin: 2rem 0;
}

header #aboutShort h2 div {
  display: inline-block;
  margin: 0;
  padding: 0;
}

header #aboutShort h2 .spacer{
  display:unset;
  margin: 0;
}

#aboutShort p {
  margin: 0;
}

#aboutShort a {
  color: orange;
}

#pollutedEarth {
  /*Note: Important that both be exactly the same aside from oppositing rotation. */
  position: absolute;
  height: 100vh;
  right: -20%;
  width: auto;
  border-radius: 1000px;
  z-index: -2;
  -webkit-animation: rotating 300s linear infinite;
  animation: rotating 300s linear infinite;
}

#earthContainer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 0;
  height: 60vh;
  width: 100%;
  overflow: hidden;
}

#earth {
  position: absolute;
  top: 0;
  width: 80%;
  border-radius: 1000px;
  z-index: -2;
  animation: rotating 300s linear infinite reverse;
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0turn);
    transform: rotate(0turn);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0turn);
    transform: rotate(0turn);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.tickets {
  position: relative;
  display: inline-block;
  background-color: #D88213;
  color: white;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 1rem;
  margin: auto;
  z-index: 1000;
  font-size: 1.25rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1rem;
  height: 2rem;
  margin-left: 0;
  overflow: hidden;
}

.tickets p {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

.tickets .animation {
  width: 10%;
  height: 200%;
  border-radius: 50%;
  position: absolute;
  background-color: white;
  opacity: 0.4;
  top: -50%;
  left: -100%;
}

.tickets:hover .animation {
  -webkit-animation: moveAround 1s infinite alternate;
  animation: moveAround 1s infinite alternate;
}

@-webkit-keyframes moveAround {
  0% {

    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes moveAround {
  0% {

    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* nav */
nav {
  position: fixed;
  background-color: #261f4b;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 110%;
  font-size: 1.5rem;
  z-index: 90000000;
}

nav h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  letter-spacing: -1px;
  margin: 0;
  line-height: normal;
  margin: 0;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

nav li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 0 1rem;
  list-style-type: none;
}

nav .tickets{
  margin: 0;
  padding: 1rem;
}

nav #mobileSupportNav{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

/* Main contents */
section {
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80%;
  margin: 2.5rem auto;
  margin-bottom: 10rem;
}

/* whatToExpect */
#whatToExpect {
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#whatToExpectTexts {
  width: 40%;
}

#whatToExpectTexts h1 {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -1px;
  font-weight: 400;
}

#whatToExpectTexts p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
}

#whatToExpectTexts li{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
}

#whatToExpectTexts ul {
  line-height: 2rem;
}

/* Rocket */
#rocketContainer {
  position: relative;
}

#rocketTakeOff {
  position: relative;
  height: 500px;
  width: 500px;
  bottom: -80px;
  z-index: 1000;
}

#rocketThruster {
  position: relative;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  top: 57%;
}

#rocket {
  position: absolute;
  bottom: 45%;
  left: 21%;
  width: 30%;
  z-index: 2;
}

#smoke {
  position: absolute;
  bottom: 0;
  width: 70%;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  z-index: 3;
}

#thruster {
  position: absolute;
  width: 10%;
  left: 31%;
  bottom: 45%;
  opacity: 1;
  scale: 1;
  rotate: 0.5turn;
  z-index: 1;
}

#gameRocketContainer {
  position: fixed;
  pointer-events: none;
  height: 100px;
  width: 100px;
  bottom: -80px;
  left: 100px;
  top: 100px;
  opacity: 0;
  -webkit-transform-origin: 30% 50%;
  -ms-transform-origin: 30% 50%;
  transform-origin: 30% 50%;
  z-index: -1;
}

#gameRocket {
  position: absolute;
  bottom: 45%;
  left: 19%;
  cursor: pointer;
  width: 35%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#gameThruster {
  position: absolute;
  width: 10%;
  left: 31%;
  bottom: 45%;
  rotate: 0.5turn;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.start {
  -webkit-animation: sway 0.3s infinite;
  animation: sway 0.3s infinite;
}

.start #smoke {
  -webkit-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
  opacity: 0;
}

.start #thruster {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  scale: 1;
  opacity: 1;
}

@-webkit-keyframes sway {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(2px, 1px) rotate(1deg);
    transform: translate(2px, 1px) rotate(1deg);
  }

  100% {
    -webkit-transform: translate(-1px, -3px) rotate(-1deg);
    transform: translate(-1px, -3px) rotate(-1deg);
  }
}

@keyframes sway {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(2px, 1px) rotate(1deg);
    transform: translate(2px, 1px) rotate(1deg);
  }

  100% {
    -webkit-transform: translate(-1px, -3px) rotate(-1deg);
    transform: translate(-1px, -3px) rotate(-1deg);
  }
}

/* Testimonials */
#testimony {
  border-radius: 2rem;
  padding-bottom: 2.5rem;
}

#testimony div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 27.6px;
  padding: 2rem;
  width: 90%;
  margin: auto;
}

#testimony #dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 1rem;
  align-items: center;
  justify-content: center;
}

#testimony #dots div {
  background-color: grey;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  padding: 1rem;
  border-radius: 3vmin;
  width: 1px;
  height: 1px;
  transform: scale(0.5);
  cursor: pointer;
  margin: 0.5rem;
}

.testimonial {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  height: 10rem;
}

.author {
  font-style: italic;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

#testimony .tickets {
  position: absolute;
  bottom: -15%;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  border-radius: 0;
}

/* faq */
#faq h1 {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -1px;
  font-weight: 400;
  width: 100%;
  text-align: center;
  border-radius: 0;
  margin-bottom: 2rem;
}

.faq-items {
  display: inline-block;
  position: relative;
  border-radius: 10px;
  padding: 10px;
}

details {
  position: relative;
  margin: auto;
  cursor: pointer;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
  
}

details[open] p {
  -webkit-animation-name: invisiblyGrowFontSize, fadeIn;
  animation-name: invisiblyGrowFontSize, fadeIn;
  -webkit-animation-duration: 500ms, 200ms;
  animation-duration: 500ms, 200ms;
  -webkit-animation-delay: 0ms, 500ms;
  animation-delay: 0ms, 500ms;
}

details>summary {
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -1px;
}

details>p{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: -1px;
}

details>summary::before {
  font-size: 1.5rem;
  content: "⌄";
  /* Replace with your desired marker */
  position: absolute;
  top: -1rem;
  right: 0;
  rotate: -1turn;
  margin-left: 0.5em;
  /* Optional: Add some space between the marker and the text */
}

details[open]>summary::before {
  font-size: 1.5rem;
  content: "⮽";
  /* Replace with your desired marker */
  position: absolute;
  top: -1rem;
  right: 0;
  rotate: -1turn;
  margin-left: 0.5em;
  /* Optional: Add some space between the marker and the text */
}

@-webkit-keyframes invisiblyGrowFontSize {
  0% {
    font-size: 0;
    opacity: 0;
  }

  100% {
    font-size: 1em;
    opacity: 0;
  }
}

@keyframes invisiblyGrowFontSize {
  0% {
    font-size: 0;
    opacity: 0;
  }

  100% {
    font-size: 1em;
    opacity: 0;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

#contact {
  height: 280px;
}

#contact span {
  height: 250px;
  width: 0;
  margin: auto;
  border: 2px solid white;
}

#contact p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  margin: 1rem auto;
}

#contact button {
  color: white;
  background-color: transparent;
  border: 2px solid white;
  padding: 1rem 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  overflow: hidden;
  padding: 2rem 0;
  color: white;
}

footer .logo {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

footer .footerstuff {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.footerstuff div{
  display: flex;
  width: 50%;
  justify-content: space-around;
}

footer .footerstuff a {
  color: white;
}

.tingle-modal-box{
  width: 80%;
  background-color: grey;
  color: black
}

.tingle-modal-box__content h1{
  color: orange;
  background-color: black;
  border: 1px solid orange;
  padding: 1rem;
  width: 120%;
  transform: translateX(-10%);
}

.tingle-modal-box__content p{
  font-size: 18px;
  margin: 1rem auto;
}

.tingle-modal-box__content ul{
  margin: 1rem 2rem;
}



/* hex container */
.hexContainer {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: -1;

}

.hexagon {
  position: relative;
  margin: 1px;
  width: 100px;
  height: 110px;
  background: #111;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 3;
}

.hexagon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  z-index: 1000;
}

.stringOrRow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: -32px;
  margin-left: -50px;
}

.stringOrRow:nth-child(even) {
  margin-left: 1px;
}

#cursor {
  -webkit-animation: anime 2.5s linear infinite;
  animation: anime 2.5s linear infinite;
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 500px;
  background: #0f0;
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -2;
}

#cursor::before {
  content: '';
  -webkit-animation: anime 2.5s linear infinite;
  animation: anime 2.5s linear infinite;
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 500px;
  background: #0f0;
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transform: rotate(100deg);
  -ms-transform: rotate(100deg);
  transform: rotate(100deg);
}

@-webkit-keyframes anime {
  0% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

@keyframes anime {
  0% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

@media only screen and (max-width: 1600px) { /* 120% */
  header #aboutShort{
    -webkit-transform: translate(-50%, -40%);
    -ms-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);    
  }
}

@media only screen and (max-width: 1300px) { /* 150% */

}

  



@media only screen and (max-width: 1000px) { /*200% zoom*/
  /* Landing pad */
  header #aboutShort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80%;
    left: auto;
    top: 25%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  header #aboutShort p{
    font-size: 16px;
  }

  header #aboutShort h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    line-height: 48.5px;
  }

  header #aboutShort h2 .spacer{
    display: none;
  }

  header .tickets {
    font-size: 1rem;
  }

  #aboutShort h2 {
    width: 100%;
  }

  /* nav */
  nav {
    height: 6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1rem;
  }

  nav ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
  }

  /* Main contents */
  section {
    width: 90%;
  }

  /* rocket */
  #rocketContainer {
    left: 15%;
  }

  /* whatToExpect */
  #whatToExpect {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #whatToExpectTexts {
    width: 90%;
  }

  /* Testimonials */
  #testimony div {
    font-size: 1rem;
  }

  #testimony .tickets,
  #testimony .tickets a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 85%;
    font-family: Bebas Neue;
    font-size: 1rem;
  }

  /* FAQ */
  #faq h1 {
    font-size: 1.75rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  details>summary {
    font-size: 1.5rem;
  }

  #cursor,
  #cursor::before {
    width: 100px;
    height: 450px;
  }

  /* footer */

  footer .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem;
    justify-content: space-around;
    width: 100%;
  }

  footer .footerstuff {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  footer .footerstuff div{
    display: flex;
    flex-direction: column;
    align-items:center;
  }
  
  

  .hexContainer {
    height: calc(100% + 150px);
    width: calc(100% + 150px);
    overflow: hidden;
  }


}

@media only screen and (max-width: 400px) {
  header #aboutShort h2 {
    font-size: 1.25rem;
    line-height: 2rem; 
  }
}

@media only screen and (max-width: 300px) {
  header #aboutShort h2 {
    font-size: 1rem;
    line-height: 1rem;
  }
}

@supports (-webkit-touch-callout: none) {

  /* CSS specific to iOS devices */
  .hexContainer {
    display: none;
  }
}