@import url('https://fonts.googleapis.com/css?family=Bangers|Cinzel:400,700,900|Lato:100,300,400,700,900|Lobster|Lora:400,700|Mansalva|Muli:200,300,400,600,700,800,900|Open+Sans:300,400,600,700,800|Oswald:200,300,400,500,600,700|Roboto:100,300,400,500,700,900&display=swap');
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
	}
body, html {
  height: 100%;
  margin: 0;
}

.bg {
  background: black;
  background-image: url("banner.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg2 {
  background: #1D2A35;
}
/* ---- Navi ---- */
.topnav {
  overflow: hidden;
  background: linear-gradient(to bottom, #000, #0003 90%,#0000);
}

.topnav a {
  float: right;
  display: block;
  color:antiquewhite;
  text-align: center;
  padding: 20px 20px 8px;
  text-decoration: none;
  font-size: 20px;
  padding-top: 3vh;
	padding-right: 3vh;
	text-shadow: 2px 2px 8px black;
}
.topnav a:first-child:hover {
  border-bottom: none;
}
.topnav a:hover {
  border-bottom: 2px solid #A90F2A;
  color: antiquewhite;
}

.topnav a.active {
  border-bottom: 2px solid #A90F2A;
  color:antiquewhite;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/* ---- Logo ---- */
h3, p{
  margin:0px;
  padding:0px;
}

.logo h3 {
    color:#A90F2A;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height:1.3;
	letter-spacing: 3px;
}
.logo p {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: antiquewhite;
  /* font-weight: 650; */
}

.logo {
	    display: inline-block;
	padding-top: 1.5vh;
    float: left;
    text-align: left;
}
a.logo {
	padding-left: 1.5vw;
	padding-top: 1.5vh;
    float: left;
    text-align: left;
}
/* ---- Kontakt ---- */
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   color:antiquewhite;
   text-align: center;
padding-bottom: 10px;
	font-size: 20px;
	text-shadow: 2px 2px 8px black;
}
.footer a {
  color:antiquewhite;
  text-decoration: none;
}
.gap {
  padding-top: 90px;
}
/* ---- Galerka ---- */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0px 15px;	
}
img {
  border-radius: 20px;
  box-shadow: 0px 0px 10px black;
	  transition: 0.3s all ease;
}
.gallery img:hover {
  transform: scale(0.9);
}
.gallery {
  -ms-flex: 25%;
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.gallery img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .gallery {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .gallery {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
