html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
@font-face {
 font-family: 'Myfont';
 src: url('Myfont-Regular.ttf') format("truetype");
}
body {
  font-family: "Devant P", sans-serif;
  margin: 0px;
  padding: 0px;
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#gschaut {
  padding-top: 80px;
  margin: 0;
  background-size: 100% auto;
  background: url("/img/gschaut/DSC03408.JPG") no-repeat bottom;
  min-height: 40vh;
  width: 100%;
  overflow: visible;
}
#logoCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Myfont, sans-serif;
}
/*
NAVIGATION
*/
.center nav {
  margin: 5px;
  position: sticky;
  z-index: 1000;
  top: 0;
  background-color:rgba(255, 255, 255, 0.4);
}
.center ul{
  margin: 0px;
  padding: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-evenly;
  align-items: flex-start;
  list-style: none;
  gap: 5%;

}
@media screen and (max-width: 520px) {
  .center ul {
    flex-direction: column;
  }
}

.center li {
  padding-top: 5px;
  padding-bottom: 5px;
}
.center li a {
  font-weight: bold;
  color: black;
  font-family: Myfont, sans-serif;
  font-size: 0.8em;
  /*text-shadow: 1px 1px 1px;*/


}
.center li a:hover, a:active{
  font-weight: bolder;
  color: hotpink;
}
.center a{
  text-decoration: none;
  color: black;
  font-family: Myfont, sans-serif;
}

.center a:hover, a:active{
  font-weight: bolder;
  color: hotpink;
}

#gmaltNav {
  background-color: white;

}

/*
HEADER für alle Seiten
 */

.heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;

}

.heading h2, .heading h1 {
  margin-left: auto;
  margin-top: 15px;
  padding-right: 30px;
  font-family: Myfont, sans-serif;
  color: wheat;
  text-shadow: 1px 1px 1px #323131;
}

.logo header {
  width: 5vw;
  height: auto;
  padding: 10px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.logoCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo img {
  max-width: 5vw;
  height: auto;
  padding: 10px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/*
GSCHAUT - Seitenlayout Inhalt
 */

#Kocevje {

  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  background: white;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-around;

}

#Kocevje .video {
  margin: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  flex: 1.8;

}
#Kocevje article{
  margin: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(253, 253, 251);
  flex: 1;

}

#Kocevje article p {
  margin: 0px;
  padding:10px;
  text-align: justify;
  font-size: 0.7em;
  /*columns: 2;
  column-gap: 20px;*/
  width: 100%;
}
#Kocevje article div p,
#Kocevje article div h4{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

iframe {
  border: none;
  height: 100%;
  width: 100%;
  min-width: 50vw;
  min-height: 50vw;
  padding-top: 15px;
}
/*
wenn Bildschirm unter 1082 px breit ist, werden die Inhalte von #Kocevje horizontal angeordnet
untereinander und nicht vertikal angezeigt
 */

@media screen and (max-width: 1082px) {
  #Kocevje {
    flex-direction: column;
    gap: 0px;
  }
  #gschaut {
    padding-top: 0px;
    padding-bottom: 0px;

  }
}
/*
GALLERIES
*/
.grow {
  display: flex;
  flex-wrap:wrap;

  justify-content:space-evenly;
  padding: 0 4px;
  margin: 0px;
}

/* Creates four equal columns that sits next to each other */
.gcolumn section{
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.gcolumn div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin: 0.2em;
  padding-top: 1em;
  padding-bottom: 1em;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  font-family: Myfont, sans-serif;
  font-size: 0.8em;
  font-weight: bold;
  color: black;
}

.picture {
  display: flex;
  flex-direction: column;
  width: 100%;
  vertical-align: middle;
}
.picture img {
  width: 55%;
  box-shadow: #e5e4e4 0.8em 0.8em 0.5em;
  border: 0px solid #3a3a3a;
  border-width: 1px;
  margin-bottom: 0.5em;
}
.picture div {
  margin: 0px;
  padding-bottom: 6em;
}

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

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 3000px) {
  .gcolumn {
    flex: 25%;
    max-width: 24%;
  }
}

@media (max-width: 1200px) {
  .gcolumn {
    flex: 50%;
    max-width: 49%;
  }
}

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

#gmaltGallery {
  margin-top: 10px;
}

/*
FOOTER für alle Seiten
 */

.logo {
  max-width: 15vw;
}


footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  color: black;

}

footer ul {
  list-style: none;
  margin: 0px;
  padding:5px;
}

.sub nav {
  justify-content: center;
  text-align: center;
}

.logo footer{
  margin-bottom: 5px;
}
footer a{
  text-decoration: none;
  color: black;
  text-align: center;
  font-size: 0.8em;
}
footer a:hover, a:active {
  font-weight: bolder;
  color: hotpink;
}

footer p {
  font-size: 0.5em;
}

footer li {
  font-size: smaller;
}

/**
CONTACT SITE
**/

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: auto 100vw;
  background: url("/img/gmalt/Druck.jpg") no-repeat bottom;
  color: black;
  margin-top: 0;
  padding: 10px;
}
.contact form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    width: 50%;
}
.contact form input {
    width: 75%;

}
.contact form textarea {
    width: 75%;
    height: 100px;
}

.con footer {
  position: static;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}


.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: 100% auto;
  background: url("/img/gmalt/Druck.jpg") no-repeat bottom;
  color: black;
  margin-top: 0;
  padding: 10px;
}

.contact form input {
  width: 75%;

}
.contact form textarea {
  width: 75%;
  height: 100px;
}

.con footer {
  position: static;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

@media screen and (max-width: 520px) {
  .contact form {
    width: 85vw;
  }
    .contact form input textarea{
        width: 75vw;
        background: rgba(255, 255, 255, 0.6);
    }
}


