* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body { 
    font-family:      Verdana, Geneva, Tahoma, sans-serif;
}

#container {
    width: 100%;
    margin: auto;
    }


    nav {
      z-index: 2;
      position: fixed;
    }
    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #333;
    
    }
    
    @media only screen and (min-width: 1000px) {
      h1 {
        font-size: 60px;
      }
    }


    li {
      float: left;
  
    }
    


 /* Dropdown Button */
 .dropbtn {
  background-color: black;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: rgb(92, 88, 88);
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 





header {
    background-color: rgb(122, 110, 110);

   
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-weight:    bold;
    width: 100%;
    padding-top: 100px;
    padding-left: 10%;
    padding-bottom: 50px;
    color: white;
    }


footer {

    padding-top: 40px;
    padding-bottom: 50px;
  
    width: 100%;
    clear: both;
    

    }     

#u1 {
    font-size: 3vw;    
}
.wb2 {
    padding: 20px;
}

p {
    font-size: 18px;
}


.bild {
    height: auto;
    width: 40%;
    display: block;
    border: solid;
    border-width: 5px;
}


.first {
  background-color: rgb(247, 239, 239);
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 10%;
  padding-right: 10%;
}

.second {
    background-color: rgb(122, 110, 110);
    color: white;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 10%;
  padding-right: 10%;
}

.mySlides {display: none}


/* Slideshow container */
.slideshow-container {
    width: 50%;
    position: relative;
    border: solid;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 10px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: black;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 10px;
    padding: 8px 10px;
    position: absolute;
    bottom: 8px;
    text-align: center;
    background-color: black;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 8px;
    padding: 6px 10px;
    position: absolute;
    top: 0;
    background-color: black;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: black;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }

  /* Style the Image Used to Trigger the Modal */
#portrai {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#portrai:hover {opacity: 0.7;}

  /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}