@font-face {
  font-family: "Permanent Marker";
  src: url("fonts/PermanentMarker-Regular.ttf");
}
@font-face {
  font-family: "Story Script";
  src: url("fonts/StoryScript-Regular.ttf");
}

body {
  background-color: #192e0f;
  background-image: url("BG_Bilder/background-4.5.png");
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  background-repeat: repeat-x;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /*--^^^BESTER FREUND zum zentrieren--*/
  margin: auto;
  gap: 50px;

  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  z-index:100;
  
}

.button {
  background-color: #596421;

  padding-right: 20px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  border-radius: 50px;
}

.home,
.portfolio,
.contact,
.blog {
  font-family: "Gill Sans";
  font-size: 16px;
  font-weight: 700;
  color: #ffc600;

  text-align: center;
  text-decoration: none;
  border-radius: 50px;
}

.c-home,
.c-portfolio,
.c-contact,
.c-blog {
  font-family: "Gill Sans";
  font-size: 20px;
  font-weight: 700;
  color: #ffc600;

  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  
  
}

.button:hover {
  color: #ffc600;
  background-color: #778f2e;
  transform: scale(1.1);
  transition: all .4s ease;
-webkit-transition: all .4s ease;
}


@media (max-width: 700px) {
  .navbar {
    display: none;
  }
}

@media (max-width: 700px) {
  .navbar-clapped {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    font-size: 10px;
    transform: scale(0.7);
    
    z-index:100;
  }
}
@media (min-width: 700px) {
  .navbar-clapped {
    display: none;
  }
}


h1 {
  font-family: "Permanent Marker", "gill sans";
  font-size: 40px;
  text-align: center;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
  width: 100%;
  margin-top: 25px;
  margin-bottom: 5px;
  
  background: linear-gradient(to top, red, yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(.5vw .5vw #000);
}



h2 {
  display: flex;
  justify-content: center;

  margin-top: 70px;
  margin-bottom: 100px;

  font-family: 'Gill Sans';
  color: rgb(255, 221, 35);
  text-shadow: 1px 1px 6px #88701f;
  border-top: solid;
  border-bottom: solid;
  border-width: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
}


.l-pics, .cgi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
  width: auto;
  height: auto;
  
  margin: auto;
}

img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 500px;
  
  border: solid;
  border-width: -7px;
  border-radius: 39px;
  border-color: #192e0f;
  transition: 0.3s;
}

img:hover {
  transform: scale(1.4);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  
  border:none;
  border-radius: 0;
}


p {
  display: flex;
  justify-content: center;
  color: #fff8b6;
  margin-top: 30px;
}

a.contact-me {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  color: #fff8b6;
  margin-bottom: 50px;
  transition: 0.3s;
  text-decoration: none;
  width: 100px;
  border-top: solid;
  border-bottom: solid;
  border-radius: 100px;
  border-width: 2px;
  margin-left: auto;
  margin-right: auto;
}

a.contact-me:hover {
  transform: scale(1.2);
  font-weight: 800;
  text-decoration: none;
  border:none;
}

@media (max-width: 700px) {
  .landscape-illustrations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 10px;
    margin-top: 20px;
    margin-left: 45px;
  }
  
  h2 {
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  
  img {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 70vw;
  }
}