body {
  background-color: white;
  font-family: 'Roboto', sans-serif;
}
p {
}
a {
  color: #505050;
}
a:hover {
  text-decoration:none;
  color: black;
}
hr {
  margin-top: 0;
}
.header {
  height: 170px;
  background-color: white;
  padding-top: 35px;
}
.header img {
  min-width: 35%;
}
.navbar {
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  font-weight: 600;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.25); 
  margin-bottom: 20px;
}
.navbar a {
  color: gray;
}
.navbar a:hover {
  color: black;
}
.navbar a.active {
  color: black;
}
.navbar li {
  display: inline-block;
}

.fa-bars {
  color: #505050;
}

.card {
  margin-top: 40px;
  box-shadow: 4px 4px 23px rgba(0,0,0,0.5); 
}
.img-thumbnail {

}
.card h4 {
  font-family: 'Open Sans Condensed', sans-serif;
  padding-top: 10px;
  color: #606060;
  font-size: 1.3em;
}
.kontakt {
  padding-left: 18px;
}
.card-kontakt {
  padding-left: 18px;
}
.card-block {
  padding-top: 25px;
}
.impressum {
  padding-left: 18px;
}
.member {
  padding-left: 18px;
}

/*footer*/
a:hover {
    text-decoration: none;
}
.bottom {
  height: 50px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  padding-top: 10px;
  margin-top: 70px;
  margin-bottom: 50px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.25); 
}
.bottom a {
  line-height: 30px;
  font-weight: 600;
}

.clearer {
  clear: both;
}

 /* zu index-java */
 /* top navigation */
.topnav {
  background-color: white;
  overflow: hidden;
  height: 40px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.25); 
}

/* Style the links inside the navigation bar */
.topnav a {
  text-align: center;
  display: block;
  color: gray;
  float: left;
  padding-top: 0.5em;
  padding-right: 1em;
  padding-left: 1em;
  padding-bottom: 0.5em;
  text-decoration: none;
  font-weight: 600;
}

/* Change the color of links on hover */
.topnav a:hover {
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
} 

 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} 

