/*Home*/

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-image: linear-gradient(#d77f90,#a67759);
  }

  .Überschrift{
    font-size: 70px;
    font-family:"Georgia, 'Times New Roman', Times, serif";
}


@media screen and (max-width: 600px) {
  .Überschrift {
    font-size: 50px;
  
  }
}

  /*navbar*/


  .navbar-brand{
    float: left;
  }

  .navbar {
    overflow: hidden;
    background-color:#d77f90;
  }
  
  .navbar a {
    float: left;
    color: black;
    text-align: center;
    padding: 20px 18px;
    text-decoration: none;
    font-size: 20px;
    float: right;
  }
  
  .dropdown {
    float: right;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 20px;  
    border: none;
    outline: none;
    color: black;
    padding: 20px 18px;
    background-color: transparent;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: white;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }


  /*Responsive Navbar*/
 

  .navbar .icon {
    display: none;
  }

  @media screen and (max-width: 600px) {
    .navbar a:not(:first-child) , .dropdown .dropbtn{display: none;}
    .navbar a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .navbar.responsive {position: relative;}
    .navbar.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .navbar.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  

  .navbar.responsive .dropdown {float: none;}
  .navbar.responsive .dropdown-content {position: relative;}
  .navbar.responsive .dropdown .dropbtn {
    display: block;
    text-align: left;
  }
}


/*Balken*/
#blackRow {
  margin: 0;
  padding: 0px;
  height: 10px;
  background-color: #a67759;
  border: 1px solid black;
  }

#blackRow2 {
    margin: 0px;
    padding: 0px;
    margin-left:200px;
    margin-right:200px;
    height: 0.5px;
    background-color: black;
    }



/*Slideshow*/
* {box-sizing: border-box;}
.mySlides {
  display: none;
  width: 100%;
  height: auto;
}

img {
  vertical-align: middle;
  width:100% ;
  max-width: 600px;
  height: auto;
  
  display: block;
  margin-left: auto;
  margin-right: auto;
  
  border: 3px solid black;
}

.img2{
   vertical-align: middle;
  width:100% ;
  max-width: 1000px;
  height: auto;
  
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.mySlidesfade{
  width: 100%;
  height: auto;
  background-color: black;

}

/* Slideshow container */
.slideshow-container {
  margin: auto;
  position: relative; 
}



/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0px 0px;
  background-color: #bbb;  border-radius: 50%;
  display:inline-flex;
  transition: background-color 0.6s ease;
  
}

.active {
  background-color: black;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
  
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
  
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 600px) {
  .text {font-size: 11px;
  
  }
}

 
/*Column*/
* {
  box-sizing: border-box;
}

.textblock{
  height: 450px;
  padding:  40px 40px;
}


/*.picture{
  display: block;
  margin-left: auto;
  margin-right: auto;
}*/


/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 40px 40px 0px;
  height: 680px;
}

.column2 {
  float: left;
  width: 50%;
  padding: 40px 40px 0px;
  height: 700px;
}

.column3 {
  float: left;
  width: 50%;
  padding: 40px 40px 0px;
  height: 680px;
  
}

.column4 {
 float: left;
  width: 100%;
  height: auto;  
}

.column5 {
 float: left;
  width: 100%;
  padding: 40px 40px 0px;
  height: 200px;  
}




/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}



/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    height: 500px;
    
  }
}

@media screen and (max-width: 400px) {
  .column4 {
    width: 100%;
    height: auto ;
    
  }
}
@media screen and (max-width: 400px) {
  .column2 {
    width: 100%;
    height: 700px;
  
  }
}

@media screen and (max-width: 600px) {
  .column3 {
    width: 100%;
    height: 550px;
  
  }
}

@media screen and (max-width: 400px) {
  .column4 {
    width: 100%;
    height: auto;
  
  }
}

@media screen and (max-width: 400px) {
  .column5 {
    width: 100%;
    height: auto;
  
  }
}


  





/*footer*/
  .footer {
    background-color: #a67759;
    text-align: center;
    color: black;
    position: relative;
    
  }




  .responsive-video{
    position: relative;
    padding-bottom: 56%;
    padding-top: 40px;
    height: 0;
    overflow: hidden;
    float: 100%;
    
    
    display: block;
  margin-left: auto;
  margin-right: auto;
    
    width:100% ;
  max-width: 550px;
  height: auto;
    
}



  .responsive-video iframe,
  .responsive-video object,
  .responsive-video embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 550px;
    height: 550px;
    border: 3px solid black;
  }

@media screen and (max-width: 400px) {
  .responsive-video iframe,
  .responsive-video object,
  .responsive-video embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
    height: auto;
    border: 3px solid black;
    
    width:100% ;
  max-width: 700px;
  height: auto;
  }
}


