/* Small Reset */
*::before,
*::after,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: Aileron, sans-serif;
  overflow: hidden;
}

.mainHeader {
  height: fit-content;
  padding: 0 2rem;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .mainHeader {
    flex-direction: row;
    align-items: center;
  }
}
.mainHeader h1 {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 900;
}
.mainHeader .mainNav ul {
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  display: flex;
  gap: 4rem;
  list-style: none;
}
.mainHeader .mainNav ul .active {
  text-decoration: underline;
}

.home {
  height: 100%;
  overflow: hidden;
}
.home .landingSlider {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.home .landingSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .landingSlider .slideBubbles {
  padding: 0.5rem;
  border-radius: 0.5rem;
  gap: 0.5rem;
  display: flex;
  background-color: rgba(124, 124, 124, 0.3);
  font-size: 4rem;
  position: absolute;
  text-align: center;
  right: 50%;
  transform: translateX(50%);
  width: fit-content;
  bottom: 3.125rem;
}
.home .landingSlider .slideBubbles .dot {
  background: black;
  border-radius: 100%;
  width: 1rem;
  height: 1rem;
}
.home .landingSlider .slideBubbles .dot.active {
  background: white;
}

.ausstellungenContent {
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: start;
  overflow: hidden;
}
.ausstellungenContent .ausstellungenContainer {
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  display: flex;
  gap: 4rem;
}

.ausstellungCard {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.ausstellungCard p {
  padding: 0.25rem 0.5rem;
}
.ausstellungCard img {
  height: 50vh;
}
@media (min-width: 768px) {
  .ausstellungCard img {
    height: 80vh;
  }
}
@media (min-width: 768px) {
  .ausstellungCard {
    font-size: 2rem;
  }
}

.ausstellungenContent, .ausstellung {
  padding: 0 2rem;
}

.ausstellung {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ausstellung h1 {
  font-size: 3.75rem;
  font-weight: 900;
}
.ausstellung .bilder {
  justify-content: center;
  gap: 8rem;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  row-gap: 4rem;
}
.ausstellung .bilder .bild {
  box-shadow: -4px 4px 7.9px 0px rgba(0, 0, 0, 0.25);
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.ausstellung .bilder .bild p {
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}
.ausstellung .bilder .bild img {
  width: 300px;
}

.kontakt {
  margin-top: 1rem;
  overflow: hidden;
  height: 100%;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  justify-content: start;
}
@media (min-width: 768px) {
  .kontakt {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .kontakt {
    grid-template-columns: 1fr 1fr;
  }
}
.kontakt aside {
  grid-row: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kontakt aside .ktext {
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .kontakt aside {
    grid-column: 2;
  }
}
.kontakt aside h1 {
  font-size: 3rem;
  font-weight: 900;
}
.kontakt aside p, .kontakt aside a {
  font-size: 1.5rem;
  font-weight: 400;
}
.kontakt .imgContainer {
  height: 100%;
  overflow: hidden;
}
.kontakt .imgContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.e404 {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.e404 h1 {
  font-size: 6rem;
}
.e404 p {
  font-size: 2.5rem;
}

/*# sourceMappingURL=style.css.map */
