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

@font-face {
  font-family: "AlteHaasGroteskBold";
  src: url("../fonts/AlteHaasGroteskBold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

html, body {
  font-size: 2vw;
  font-family: Helvetica, sans-serif;
  overflow: hidden;
}

.privacy, .imprint {
  display: none;
  text-align: left;
}

.privacy p {
  margin-bottom: 2.55vw;
}

.unactive .privacy p {
  margin-bottom: 0.25vw;
}

.info {
  border-radius: 0 0 1vw 1vw;
  backdrop-filter: blur(1vw);
  background-color: rgba(255, 255, 255, 0.1);
  width: 50%;
  padding: 0.5vw 0.65vw;
  font-size: clamp(14px, 0.75vw, 28px);
  position: absolute;
  z-index: 999;
  color: black;
  opacity: 0;
}
.info p {
  color: rgb(120, 120, 120);
  filter: contrast(1) brightness(0.25);
  font-family: Helvetica;
}
.info.unactive {
  opacity: 0;
}
.info.active {
  opacity: 1;
}

p .blackspace {
  position: relative;
  width: 2vw;
  margin-right: 0.3vw;
}

.last {
  width: 60vw;
}

.about {
  padding: 1vw;
  background-color: white;
  font-size: 2.55vw;
  width: 100%;
  text-align: center;
  color: red;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.25s ease;
  filter: saturate(10.5) grayscale(13) brightness(1) contrast(72) invert(1);
}
.about div {
  color: red;
}
.about h1 {
  margin-top: 1.5vw;
}
.about h1, .about h2, .about h3 {
  will-change: transform, filter, flex;
}
.about h1, .about h2, .about h3, .about p {
  text-decoration: none !important;
  font-size: 2.55vw;
  color: black;
  font-family: "AlteHaasGroteskBold";
  font-weight: 900;
  filter: blur(0.01vw) invert(1);
  transition: all 0.25s ease;
}
.about a {
  cursor: pointer !important;
}
.about p {
  font-size: 1.25vw;
  filter: invert(1);
}
.about .artists p, .about .links p {
  font-size: 2.55vw;
}
.about .artists a, .about .artists a:visited, .about .artists a:hover, .about .links a, .about .links a:visited, .about .links a:hover {
  text-decoration: none;
  color: red;
}
.about .two-column {
  columns: 2;
  column-gap: 4vw;
}
.about hr {
  filter: url(#n2) blur(0.01vw) invert(1);
  margin: 2vw 0 2vw;
  transition: all 0.25s ease;
}
.about h2 {
  margin-bottom: 2vw;
}

.unactive p, .unactive .about {
  font-size: 0.25vw;
}
.unactive .artists p {
  font-size: 0.3vw;
}
.unactive h1, .unactive h3, .unactive h2, .unactive a {
  font-size: 1vw;
  letter-spacing: 0;
  transition: all 0.25s ease;
}
.unactive .about {
  padding: 0.25vw;
}
.unactive .about h1 {
  margin-top: 0.5vw;
}
.unactive .about hr {
  margin: 0.75vw 0;
}
.unactive .about p {
  letter-spacing: 0;
  transition: all 0.25s ease;
  font-size: 0.25vw;
}
.unactive .about h2 {
  margin-bottom: 0.5vw;
}
.unactive .about > div {
  transition: all 0.25s ease;
}
.unactive .about .two-column {
  column-gap: 0vw;
}
.unactive .char {
  min-width: 0vw;
}

.char {
  min-width: 1vw;
  will-change: min-width, transform, filter, flex;
}
p .char {
  min-width: 0.85vw;
}

.draggable {
  transition: all 0.25s ease;
  box-sizing: border-box;
  display: flex;
  will-change: transform, filter, flex;
  height: 100vh;
  display: flex;
  justify-content: center;
}
.draggable img {
  height: 100%;
  width: 100%;
  filter: saturate(31.5) grayscale(1) brightness(1.4) contrast(45);
  border-right: 0.1vw solid white;
}
.draggable:hover {
  flex: 1 0 auto !important;
}
.draggable:hover img {
  filter: saturate(1.2) !important;
  border-right: 0 solid white;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  height: 100vh;
  width: 100vw;
  top: 0;
  position: absolute;
}

.buy-button {
  position: absolute;
  /* display: inline-block; */
  width: 5vw;
  /* height: 10vw; */
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
  z-index: 9999;
  font-family: "Courier New", Courier, monospace;
  /* font-size: 4vw !important; */
  font-weight: 100;
  left: 0;
  transform-origin: center center; /* Center the transform origin */
}

.buy-button svg {
  width: 100%;
  height: 100%;
}

.button-text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25vw;
  font-weight: bold;
  color: black;
  pointer-events: none;
  font-weight: 100;
}

@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    height: 100vh; /* Fixed container height */
    width: 100vw; /* Full viewport width */
    overflow: auto;
  }
  .draggable {
    flex: unset; /* Distribute height equally */
    align-items: unset;
    border: unset; /* Optional: Add border for visibility */
    box-sizing: unset; /* Include padding/borders in size */
    background: unset; /* Add background color for clarity */
    aspect-ratio: 1/1;
    width: 100vw;
    height: unset;
  }
  .draggable:hover {
    flex: unset !important;
    display: flex !important;
  }
  .last.draggable {
    width: 100%;
  }
  .about h1, .about h2, .about h3, .about p, .about, .links, .artists, .links p, .artists p, a {
    font-size: 7.5vw !important;
  }
  .info {
    max-width: 80% !important;
    width: auto !important;
    min-width: 50% !important;
    padding: 1vw 2vw 1.75vw 2vw;
  }
  .info p {
    font-size: 3.5 !important;
    color: aliceblue !important;
  }
  .about .two-column {
    columns: 1;
  }
  .last.unactive.draggable {
    display: unset !important;
    overflow: unset !important;
    height: auto !important;
  }
  .last.draggable {
    display: unset !important;
    overflow: unset !important;
    height: auto !important;
  }
  .buy-button {
    width: 15vw;
  }
  .button-text {
    font-size: 3vw;
  }
  .privacy p {
    min-height: 7.5vw;
    margin-bottom: 7.5vw;
  }
}/*# sourceMappingURL=style.css.map */