* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #191719;
  color: #989898;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  list-style-position: inside;
  overflow-x: hidden;
}

.background {
  height: 100vh;
  width: 100vw;
  position: fixed;
}
.background:after {
  content: "";
  position: absolute;
  inset: -50%;
  background-image: url("../images/tile.png");
  background-repeat: repeat;
  background-size: 10%;
  opacity: 0.05;
  pointer-events: none;
  transform: rotate(-45deg);
}

.hero {
  width: 100%;
  max-width: 800px;
  height: auto;
  padding-bottom: 2em;
  display: block;
}

.main {
  display: flex;
  justify-content: center;
}

.flex-row, .some, .flex-content {
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  width: 100%;
  -moz-column-gap: 2em;
       column-gap: 2em;
}

.flex-column {
  flex-flow: column-reverse wrap;
  flex: 1;
}

.flex-content {
  background-color: transparent;
  max-width: 1268px;
  padding-top: 3em;
  padding-left: 2em;
  padding-right: 2em;
  z-index: 0;
}

a {
  color: #d300ff;
  text-decoration: none;
}
a:hover {
  color: white;
}

.anchor {
  padding-top: 5.6em;
  margin-top: -5.6em;
  visibility: hidden;
}

.footer {
  background-color: black;
  color: #7f7f7f;
  width: 100%;
  text-align: center;
  padding: 1em;
  z-index: 0;
}

.bigtext {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4em;
  text-align: center;
  color: white;
  padding-bottom: 0.5em;
  width: 100%;
}

.smalltext, .smalltext-center {
  font-size: 1em;
  text-align: left;
  text-shadow: 0px 0px 3px black;
}
.smalltext b, .smalltext-center b {
  font-weight: bold;
}

.smalltext-center {
  text-align: center;
}

.mediumtext, .mediumtext-center {
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  padding-bottom: 1em;
  color: #d300ff;
}

.mediumtext-center {
  text-align: center;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 2em;
  padding-left: 2em;
  margin-top: 4em;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1em;
}

.logo {
  width: 100%;
  margin-bottom: 1em;
  transition: transform 0.2s;
}
.logo:hover {
  transform: scale(0.9);
  animation-fill-mode: forwards;
}

.gallery, .gallery-spotify {
  -moz-column-count: 3;
       column-count: 3;
  gap: 2em;
  padding-bottom: 2em;
}

.gallery-spotify {
  -moz-column-count: 5;
       column-count: 5;
  padding-bottom: 0;
}

@media (max-width: 1279px) {
  .gallery, .gallery-spotify {
    -moz-column-count: 2;
         column-count: 2;
    padding-bottom: 2em;
  }
  .gallery-spotify {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 767px) {
  .gallery, .gallery-spotify {
    -moz-column-count: 1;
         column-count: 1;
    padding-bottom: 0;
  }
  .logo {
    padding: 1em;
  }
  .videoWrapper {
    margin-top: 3em;
  }
}
.story {
  color: #7f7f7f;
  border-radius: 1em;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 2em;
  padding: 2em;
  background-color: black;
}
.story .smalltext, .story .smalltext-center {
  padding-bottom: 0;
}

.header {
  background-color: black;
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 0;
}
.header ul {
  list-style: none;
  overflow: hidden;
}
.header li a {
  display: block;
  padding: 1em;
  text-decoration: none;
  color: #7f7f7f;
  text-align: center;
}
.header li a:hover {
  color: #d300ff;
}
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.header .menu-icon {
  cursor: pointer;
  float: right;
  padding: 28px 20px;
}
.header .menu-icon .navicon {
  background: #7f7f7f;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.header .menu-icon .navicon:before {
  background: #7f7f7f;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: 5px;
}
.header .menu-icon .navicon:after {
  background: #7f7f7f;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: -5px;
}
.header .menu-button {
  display: none;
}
.header .menu-button:checked ~ .menu {
  max-height: 100vh;
}
.header .menu-button:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-button:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-button:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-button:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.header .menu-button:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 767px) {
  .header ul {
    display: flex;
  }
  .header li {
    width: 100%;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
.section {
  width: 100%;
  padding-bottom: 2em;
}

.some {
  justify-content: space-evenly;
  max-width: 700px;
}
.some a {
  color: #d300ff;
  padding-bottom: 2em;
  transition: transform 0.2s;
}
.some a:hover {
  transform: scale(1.2);
  animation-fill-mode: forwards;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
  max-width: 100%;
  border-radius: 1em;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -44px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 1em;
  width: 1em;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
#myImg {
  border-radius: 1em;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 2em;
}

#myImg:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 2em;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-height: 93vh;
  -o-object-fit: contain;
     object-fit: contain;
  width: 93%;
}/*# sourceMappingURL=main.css.map */