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

body{
  font-family: 'Inter';
  height: 100vh;
  width: 100vw;
  color: white;
  background: black;
  background-size: 400% 400%;
  animation: change 5s ease-in-out infinite;
  display: flex;               /* Flexbox aktivieren */
  flex-direction: column;      /* vertikale Anordnung */
  justify-content: center;     /* vertikal zentrieren */
  align-items: flex-start;

}


/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* Wichtig: Video bleibt im Hintergrund */
  pointer-events: none; /* Klicks gehen durch das Video durch */
}

#myVideo::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}

#myVideo::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

#myVideo::-webkit-media-controls-overlay-enclosure {
  display: none !important;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  padding-left: 50px;  
  padding-right: 50px;          /* optionaler Abstand vom linken Rand */
  padding-top: 100px;
  /*
  display: flex;
  justify-content: center; /* Align horizontal 
  align-items: center;
  */
}



#myBtn:hover {
  background: #ddd;
  color: black;
}

canvas{
  width: 100vw;
  height: 100vh;

}

.title{
  color: transparent;
/*  background: linear-gradient(-50deg,#100d13, #C496E0, #000000);*/
  background-image: url("v2_final.mp4");
  background-position: 10% 100%;
  -webkit-background-clip: text;
  line-height:auto;
  animation: fadeIn 0.5s, changeMR 5s ease-in-out infinite;

}

.test-bg{
  position:absolute;
  background: linear-gradient(-50deg, #221a27, #100d13, #000000);
  background-size: 400% 400%;
  animation: change 5s ease-in-out infinite;
  text-align: center;
  width: 100vw;
  height: 100vh;

}

h1{
  color: white;
  font-size: 10em;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: -0.05em;
  opacity: 1;
  line-height: 51px;
  /*
  display: flex;
  justify-content: center; /* Align horizontal 
  align-items: center;
  */

  
  font-family: 'Inter';
}

h2{
  color: transparent;
  font-size: 10em;
  text-transform: uppercase;
  text-align: left;
  opacity: 1;
  font-family: 'Inter';
  -webkit-text-stroke-color:white;
	text-stroke-color:white;
	-webkit-text-stroke-width:2px;
	text-stroke-width:1px;
/*
  bottom: 10%;
  padding-left: 15%;
  transform: translateY(-50%);
*/
}

.subline {
  position: absolute;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  display: flex;        
  justify-content: flex-end; 
  align-items:end;
}


p{
  width: 100vw;
  text-align:right;
  opacity: 1;
  font-family: 'Inter', sans-serif;
  font-weight:  300;
  font-size: 0.8em;
  letter-spacing: 0.10em;
  text-transform: none;
  vertical-align: text-bottom;
  padding-right: 60px;
  padding-left: 60px;
  padding-bottom: 60px;
}

.navigationleiste{
  font-weight: bold;
  font-size: 55px;
  letter-spacing: -8px;
/*  margin: 60px;
  margin-top: 30px; */
  margin: 30px 0 0 0;
  padding-left: 60px;
  padding-right: 60px;
  z-index: 1000000;
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  height: auto;

}

.navigation {
  letter-spacing: 10px;
  color: white;
  letter-spacing: 0.20em;
  word-spacing: 30px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  padding-top: 24px;
  float: right;
}

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

a:hover{
  color:white;
  cursor: pointer;
  opacity: 0.5;
}

a:active{
  color: white;
}

img {
  width: 70px;
}

.hamburger-icon-container {
  color:transparent;
  height: 1.2em;
  width: 1.2em;
  position: relative;
  cursor: pointer;
  background: currentColor;
  border:10px solid currentColor;
  border-radius: 3px;
  display: none;


}

.navigationresponsive {
  pointer-events: none; /* <--- blockiert keine Klicks auf darunterliegende Elemente */
}

.navigationresponsive.show {
  pointer-events: auto; /* nur wenn aktiv, darf sie Klicks fangen */
}

.hamburger-icon-container {
  z-index: 999999999 !important;
  position: relative;
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  content: '';
  position: absolute;
  height: 5px;
  width: 1em;
  background: white;
  transition: all .2s ease;
  margin-bottom: 10px;


}

.hamburger-icon {
  top: 0.2em;
  width: 0.5em; /*
  text-align: left;
  */
}


.hamburger-icon:before {
  top: -0.32em;
}

.hamburger-icon:after {
  top: 0.32em;

}

.hamburger-active .hamburger-icon-container {
  color:transparent;
}

.hamburger-active .hamburger-icon {
  background: transparent;
  transform: rotate(-135deg);
  margin-top: 1px;
  margin-left: 3px;
/*  margin-left: 30px; */
}

.hamburger-active .hamburger-icon:before,
.hamburger-active .hamburger-icon:after {
  top: 0;


}

.hamburger-active .hamburger-icon:before {
  transform: rotate(90deg)
}

.navigationresponsive{
  display: none;
}

@font-face {
  font-family: BBH Sans Bartle; /* set name */
  src: url(/Users/melinarotenberger/Desktop/Atom/website_melinarotenberger/home/BBHSansBartle-Regular.ttf); /* url of the font */
}

@keyframes fadeInIMG {
  0% {
    margin-left: 10%;
    opacity: 0;
  }

  100% {
    opacity: 1;
    margin-left: 0%;
  }
}

@keyframes changeMR{
  0%{
      background-position: 0 50%;
    }

  50%{
      background-position: 100% 20%;
  }

  100%{
      background-position: 0 50%;
    }
}


@keyframes change{
  0%{
      background-position: 0 50%;
    }

  50%{
      background-position: 60% 50%;
  }

  100%{
      background-position: 0 50%;
    }
}

@keyframes fadeIn{

  0%{
    margin-top: -5%;
    opacity: 0;
  }

  100%{
    margin-top: 0%;
    opacity: 1;

  }
}

@keyframes fadeOut{

  100%{
    opacity: 1;
  }

  0%{
    opacity: 0;

  }
}

@media (max-width: 1300px){
  
  h1{
    font-size: 10em;
    /*
    bottom:30%;
    transform: translateY(-50%);
    padding-left: 5%;
    */
  }
  
  h2{
    font-size: 10em;
  /*
    bottom: 10%;
    padding-left: 15%;
    transform: translateY(-50%);
  */
  }


p{
}


}


@media (max-width: 900px){


  .content{
    font-size: 15px;
  }

  }

  @media (max-width: 840px){


    .content{
      font-size: 10px;
    }

    h1{
      line-height: 35px;
    }
  
    }
  


@media (max-width: 800px){

  .title{
    font-size: 3em;
    line-height: 45px;

  }


.navigation{
  display: none;
}


.navigationresponsive.show{
  display: block;
}

.navigationresponsive.hide{
  display: none;
}

.hamburger-icon-container {
    display: block;
    margin-top: 0.2em;
    margin-left: auto;
    margin-right: 0;
    float: right;
    z-index: 100000000;
    width: 0.9em;
}

.hamburger-active .hamburger-icon {
  background: transparent;
  transform: rotate(-135deg);
  margin-top: 5px;
  margin-left: 5px;
/*  margin-left: 30px; */
}

.navigationresponsive {
  z-index: 1000000;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.9;
  top:  0;
  left: 0;
  position: fixed;
  animation-name: fadeIn;
  animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.2s;
}

#navigationresponsive a {
  letter-spacing: 0.04em;
  text-transform: uppercase;

}

.nav-center{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hamburger-active .hamburger-icon-container {
  color:transparent;
  margin-right: -21px;
  margin-top: 20px;
}

}

@media (max-width: 600px){


  .content{
    font-size: 8px;
    padding-left: 30px;
  }

  h1{
    line-height: 30px;
  }

  }

@media (max-width: 518px) {

  .content{
    padding-left: 10px;  
    padding-right: 10px;       
    padding-top: 0px;
  }

  p{
    text-align: left;
    padding-left: 30px;
    padding-bottom: 30px;
  }

  .title{
    font-size: 3em;
    line-height: 45px;

  }


nav {
    font-size: 48px;
    line-height: 70px;
  }

.navigationleiste{
  font-size: 36px;
  letter-spacing: -4px;
  padding: 30px;
  padding-top: 20px;
  margin: 0;
}


.hamburger-icon-container {
    display: block;
    margin-top: 0;
    margin-left: auto;
    margin-right: 3px;
    float: right;
    z-index: 100000000;
    width: 1.2em;
}

.hamburger-active .hamburger-icon-container {
  color:transparent;
  margin-right: 0;
  margin-top: 0;
}

.banner-area p{
  font-size: 20px;
}

}
@media (max-width: 420px) {

  .title{
    font-size: 2em;
    line-height: 40px;
  }

  .content{
    font-size: 6px;;
  }

  h1{
    line-height: 25px;
  }
}

@media (max-width: 390px) {

  .content{
    font-size: 6px;;        
    padding-top: 0px;
  }

nav {
    margin: 250px 0 0 40px;
  }

section {
  width: 100vw;
  height: 100vh;
}

}

/*

  .mainMenue{
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
    display: none;
  }

  .mainMenue .closeMenue{
    display: block;
    position: absolute;
  }

  .openMenue{
    display: block;
  }

  .mainMenue a:hover{
    background: none;
    font-size: 1.6rem;
  }
}
*/
