/* Full Site */
body{
  background-color: #e1dcc9;
  height: 100%;
  margin: 0;
  padding: 0;
}

html{
  width: 100%;
}

.item{
  text-align: center;
  display: flex;
  justify-content: center;

}


/* text */
.text{
  color: black;
  text-align: center;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 30%;
  padding-right: 30%;
}

h1 {
  color: #d6c672;
  text-align: center;
  font-size: 48px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 25px;
}

h2{
  color: #d6c672;
  text-align: center;
  font-size: 36px;
  font-family: Arial, Helvetica, sans-serif; 
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

h3{
  color: black;
  text-align: center;
  font-size: 36px;
  font-family: Arial, Helvetica, sans-serif; 
  font-weight: bold; 
}

@media screen and (max-width:768px){
  .text{
    font-size: 18px;
    padding-left: 10%;
    padding-right: 10%;
  }

  h1{
    font-size: 36px;
  }

  h2{
    font-size: 24px;
  }
}

@media screen and (max-width:1350px){
  .text{
    padding-left: 15%;
    padding-right: 15%;
  }
}


/* nav */
nav{
  width: 100%;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b2a78b;
  position: -webkit-sticky;
	position: sticky;
	top: 0;

}

.nav_link{
  color: black;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  height: 100%;
  padding: 30px;
  padding-bottom: 15px;
  padding-top: 15px;
  font-size: 18px;
  display: flex;
}

.nav_link:hover{
  color: wheat;

}


/* Nav Handy */
.nav_handy {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #b2a78b;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.nav_handy_link{
  color: black;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  height: 100%;
  padding: 30px;
  padding-bottom: 15px;
  padding-top: 15px;
  font-size: 18px;
}

.nav_toggle{
  display: none;
}

#menü {
  height: 25px;
  width: 25px;
}

#menü:focus {
  outline: none;
}

@media screen and (max-width:768px){
  .nav_link{
    display: none;
  }

  .nav_toggle{
    display: flex;
  }
}





/* image */
.icon{
height: 35px;
width: 35px;
display: flex;
justify-content: end;
}

#profilbild{
  margin-bottom: 50px;
  height: 300px;
  width: 300px;
}


/* Galerie */
.galerie{
  column-count: 4;
  column-gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
    }

.galerie_img{
  display: inline-block;
  padding: 5px;
  margin: 0 0 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #b2a78b;
    }
 
.galerie_img img{
  width: 100%;
    }
 
@media screen and (max-width:768px){
  .galerie{
    column-count: 1;
  }
}
 
@media screen and (min-width:769px){
  .galerie{
    column-count: 2;
  }
}
 
@media screen and (min-width:1080px){
  .galerie{
    column-count: 3;
  }
}
 
@media screen and (min-width:1200px){
  .galerie{
    column-count: 4;
  }
}