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

html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  color: black;
  font-family: "Nunito Sans";
  font-size: 16px;
  list-style-position: inside;
  overflow-x: hidden;
}
body p {
  padding-bottom: 1em;
}

.hero, .hero-mobile {
  width: 100%;
  margin-top: 3.8em;
  padding-left: 2em;
  padding-right: 2em;
  display: block;
}

.hero-mobile {
  display: none;
}

@keyframes zoom {
  0% {
    scale: 0%;
  }
  50% {
    scale: 105%;
  }
  100% {
    scale: 100%;
  }
}
.main {
  display: flex;
  justify-content: center;
}

.flex-row, .flex-content, .flex-content-even {
  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, .flex-content-even {
  max-width: 1268px;
  padding-top: 3em;
  padding-left: 2em;
  padding-right: 2em;
}

.flex-content-even {
  justify-content: space-evenly;
  align-items: center;
  padding: 0;
  padding-left: 1em;
  padding-right: 1em;
}

a {
  color: #f6caa3;
  text-decoration: none;
}
a:hover {
  color: black;
}

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

.footer {
  background-color: black;
  color: #f6caa3;
  width: 100%;
  text-align: center;
  padding: 1em;
}
.footer a {
  color: #d67045;
}
.footer a:hover {
  color: #f6caa3;
}

.bigtext, .bigtext-light {
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  font-size: 2.5em;
  text-align: center;
  color: black;
  padding-bottom: 1em;
  width: 100%;
}

.bigtext-light {
  color: white;
}

.smalltext, .smalltext-center, .smalltext-center-ukk {
  font-size: 1em;
  text-align: left;
}
.smalltext b, .smalltext-center b, .smalltext-center-ukk b {
  font-weight: bold;
}

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

.smalltext-center-ukk {
  padding-top: 2em;
}

.mediumtext-center {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1em;
}

.photo, .photo-ticket, .artist-logo {
  width: 100%;
  min-width: 227px;
  margin-bottom: 2em;
  max-height: 400px;
  padding: 2em;
  padding-bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
}

.artist-logo {
  opacity: 0.8;
  padding: 0;
  margin-bottom: 2em;
  padding-left: 2em;
  padding-right: 2em;
}
.artist-logo:hover {
  opacity: 0.6;
}

.photo-ticket {
  max-height: none;
  padding: 0;
}
.photo-ticket:hover {
  transform: scale(1.02);
  animation-fill-mode: forwards;
}

.photo-round {
  width: 100%;
  max-width: 410px;
  border-radius: 100%;
  padding: 1em;
  padding-bottom: 2em;
  min-width: 250px;
  filter: none;
  -webkit-filter: none;
}

.logo {
  max-width: 260px;
  max-height: 116px;
  transition: transform 0.2s;
  margin-bottom: 3em;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
}
.logo:hover {
  transform: scale(1.1);
  animation-fill-mode: forwards;
}

#myImg {
  border-radius: 1em;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 2em;
}

.gallery, .gallery2 {
  -moz-column-count: 3;
       column-count: 3;
  gap: 2em;
}

.gallery2 {
  -moz-column-count: 2;
       column-count: 2;
}

.product {
  margin-bottom: 2em;
  border-radius: 1em;
  min-width: 212px;
  width: 100%;
}
.product:hover {
  filter: opacity(0.5);
  cursor: pointer;
}

.story {
  color: #f6caa3;
  border-radius: 1em;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 2em;
  padding: 2em;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}
.story .smalltext, .story .smalltext-center, .story .smalltext-center-ukk {
  padding-bottom: 0;
}
.story a {
  color: #d67045;
  text-decoration: none;
}
.story a:hover {
  color: #f6caa3;
}

.artist {
  background-image: url(../images/paper.png);
  margin-bottom: 2em;
  padding: 2em;
  border-radius: 1em;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.artist a {
  color: #bb3420;
}
.artist a:hover {
  color: #d67045;
}
.artist .smalltext, .artist .smalltext-center, .artist .smalltext-center-ukk {
  padding-bottom: 0;
}

@media (max-width: 1279px) {
  .hero, .hero-mobile {
    padding: 0;
  }
  .gallery, .gallery2 {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 820px) {
  .hero, .hero-mobile {
    display: none;
  }
  .hero-mobile {
    display: block;
  }
  .artist-logo {
    padding-left: 0em;
    padding-right: 0em;
  }
}
@media (max-width: 564px) {
  .gallery, .gallery2 {
    -moz-column-count: 1;
         column-count: 1;
    padding: 0;
  }
  .smalltext-center-ukk {
    padding: 0;
  }
}
@media (max-width: 460px) {
  .flex-column {
    min-width: 212px;
  }
  .story {
    min-width: 212px;
  }
  .photo, .artist-logo, .photo-ticket {
    min-width: 212px;
  }
}
.background {
  position: fixed;
  z-index: -1;
  background: linear-gradient(0deg, rgba(214, 112, 69, 0.9), rgba(187, 52, 32, 0.9)), url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='6' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  height: 100vh;
  width: 100vw;
  top: 58px;
}

@keyframes slide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-626px);
  }
}
.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: #f6caa3;
  text-align: center;
}
.header li a:hover {
  color: #d67045;
}
.header .title {
  font-family: "trajan";
  color: white;
  font-size: 2em;
  padding: 10px 0px 4px 20px;
}
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.header .menu-icon {
  cursor: pointer;
  float: right;
  padding: 30px 20px;
}
.header .menu-icon .navicon {
  background: #f6caa3;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.header .menu-icon .navicon:before {
  background: #f6caa3;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: 5px;
}
.header .menu-icon .navicon:after {
  background: #f6caa3;
  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: 1065px) {
  .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;
}

.facebook {
  padding-bottom: 0.2em;
  transition: transform 0.2s;
}
.facebook .fa-brands:hover {
  color: #f6caa3;
}
.facebook:hover {
  transform: scale(1.15);
  animation-fill-mode: forwards;
}/*# sourceMappingURL=main.css.map */