html {
  scroll-behavior: smooth;
}

nav {
  background-color: black;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 20px;
}

nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: right;
  align-items: start;

  /*abstand vertikal und abstand horizontal*/
  gap: 20px 100px;
  padding-right: 40px;

  /*punkt weg*/
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-size: 17px;
  color:white;
}

nav ul li a:hover {
    font-size: 20px;
    font-weight: 600;
    color: rgb(53, 84, 186);
    transition: all 0.5s;
}

nav ul li a.hier {
  padding: 0px 3px 3px 3px;
    border-bottom: solid rgb(53, 84, 186) 3px;
  }

.initialen {
  position: absolute;
  top: 17px;
  left: 50px;
  font-size: 50px;
  font-family: "Just Me Again Down Here", cursive;
  font-weight: 400;
  font-style: normal;
  color: rgb(53,84,186);
}

.project-header {
  margin-top: 20px;
  display: flex;
  align-items: left;    
  justify-content: space-between;
  padding: 4rem;
  padding: 80px;
  flex-direction: column;
}

.project-header h1 {
  font-size: 4rem;
  line-height: 0.9;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  margin-bottom: 0.15rem;
  color: rgb(53, 84, 186);
}


.project-header p {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  width: 60%
}


.footer {
  background-color: black;
  color: white;
  padding: 60px 80px 30px;
  font-family: "Lato", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-content p {
  margin: 0 0 10px 0;
}

.footer-content a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-content a:hover {
  color: rgb(53, 84, 186);
  transition: all 0.5s;
  transform: scale(1.1)

}


.footer-links,
.footer-mitte {
  min-width: 200px;
}


.footer-unten {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
  text-align: center;
  color: #aaa;
}
