* {
  font-family: "Montserrat", sans-serif;
  background-color: #000000;

  margin: 0;
}
html{
  scroll-behavior: smooth;
}

#allContent{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content{
  min-height: 100vh;
  width: 100%;

}
#mainText {
  line-height: 28px;
  font-size: 22px;
}

#home, #komEvents, #kontakt{
  background-color: black;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: white;
  scroll-snap-align: start;
}
#kontakt{
  max-width: 1200px;
}

h1, h2, h3, a, p{
  background: #00000000;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  width: 100%;
  background-color: black;
}
.navText{
  text-decoration: none;
  margin: 4px;
  font-size: 20px;
  color: white;
}
.navText:hover{
  color: red;
}
#logo {
  height: 70px;
  background-color: black;
}
.line{
  height: 2px;
  background-color: red;
}
.seperator{
  width: 50vh;
  height: 2px;
  background-color: red;
  margin: 20px;
}
#linkLogo {
    background: black;
}
#footText{
  color: white;
   display: flex;
   justify-content: center;
   padding-top: 30px;
}
.links{
    color: rgb(52, 52, 52);
}
footer{
  background-color: black;
}




#topBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(0, 0, 0);
}
#arrow {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 5px;
}
#titelEvents {
  margin-left: 35%;
}
#archiv {
  max-width: 1500px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 5px;
  margin: 20px;
  background-color: rgba(0, 0, 0, 0);
}
#expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(0, 0, 0, 0.9);
}
#archiv.expanded #expanded {
  max-height: 10000px;
}
#archiv.expanded #arrow {
  transform: rotate(180deg);
}
#arrow {
  transition: transform 0.3s ease;
  cursor: pointer;
  height: 50px;
  padding: 3px;
  background-color: rgba(0, 0, 0, 0);
}
.flyer{
  height: 480px;
  width: auto;
  padding: 0;
}
h1,
h2 {
  margin: 7px;
}
.contactText {
  margin: 7px;
  background-color: rgba(0, 0, 0, 0);
}
h3 {
  font-size: 20px;
}
#images{
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
}

#bilderGallerie{
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  border: 5px solid rgb(255, 255, 255);
  border-radius: 5px;
}
#bilderGallerie img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.map{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: black;
}
#contactMap{
  width: 100%;
  max-width: 900px;
  height: 400px;
}

#toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 10px 15px;
  background-color: #333;
  color: rgb(255, 4, 4);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}
#gallery{
  background-color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: white;
}


.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}