@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: #001b09;
  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 {
  color: #ffae00;
  text-shadow: .1vw .1vw #5a4106;
}

.window {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 110px;
  
  padding-bottom: 2vw;
  padding-right: auto;
  padding-left: auto;
  
  background: rgba(42, 77, 11, 0.24);
  font-size: 30px;
  border-radius: 120px;
  width: 35vw;
  
  font-family: 'gill sans';
}

p.info {
  color: #ffda14;
  text-shadow: .1vw .1vw #815923;
  text-align: center;
}

strong {
  color: #f3e13c;
  text-decoration-line: underline;
}

p {
  color: #fff8b6;
}

a.instagram {
  font-weight: 700;
  text-decoration: none;
  color: #fff8b6;
  outline: 4px solid #ddcc2b;
  outline-offset: 10px;
  border-radius: 500px;
  padding: auto;
}

.name {
  margin-top: 40px;
  font-size: 20px;
  text-align: center;
}

a.instagram:hover {
  transform: scale(1.2);
  transition: all .4s ease;
-webkit-transition: all .4s ease;
}

@media (max-width: 700px) {
  .window {
    width: 280px;
    margin-top: 90px;
    border-radius: 50px;
    padding-bottom: 50px;
  }
  .info {
    font-size: 40px;
  }
  p {
    text-align: center;
  }
  .name {
    font-size: 10px;
  }
}