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);
}

.überschrift {
  margin-top: 50px;
  display: flex;
  align-items: center;    
  justify-content: space-between;
  padding: 4rem;
}

.überschrift-text h2 {
  font-size: 12rem;
  line-height: 0.9;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  margin-bottom: 0.15rem;
}

.überschrift-text .meine {
  display: inline-block;
  position: relative;
  top: 0.1em;
  margin-bottom: -30em;
  margin-left: 10px;
  font-family: "Just Me Again Down Here", cursive;
  color: rgb(53, 84, 186);
  font-size: 9rem;  
  line-height: 1;
  white-space: nowrap;
}

.projects {
  padding: 80px;
  font-family: "Lato", sans-serif;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.project-card {
  text-decoration: none;
  color: black;
  transition: transform 0.3s ease;
}

.project-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 25px;
  border: 2px solid black;
  transition: border 3px 0.3s ease;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card span {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card:hover .project-image {
  border: 3px solid rgb(53, 84, 186);
}

.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;
}
