@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Mono&display=swap');

@keyframes slideInLeftHeader {
        0% {
          transform: translateX(-100%);
        }
        100% {
          transform: translateX(0);
        }
      }
      * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background-color: white;
}

li, a, button{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
  text-decoration: none;
  background-color: black;
}
.logo{
  height: 50px;
  width:  50px;
  cursor: pointer;
  margin-right: auto;
  background-color: black;
  border-radius: 5px;
}

header{
  animation: 2s ease-out 0s 1 slideInLeftHeader;
  display: flex;
  justify-content: end;
  align-items: right;
  padding: 20px 5%;
  color: black;
  background-color: black;
  border-radius: 50px;
  margin-top: 10px;
}

.nav__links {
  list-style: none;
}

.nav__links li{
  display:inline-block;
  padding: 19px 20px;
}

.nav__links li a{
  transition: all 0.3s ease 0s;
}
.nav__links li a:hover{
  color: aquamarine;
}

button{
  padding: 9px 25px;
  background-color: rgba(0,136, 169,1);
  border: none;
  border-radius: 50px;
  cursor:pointer;
  transition: all 0.3s ease 0s;

}
button:hover{
  background-color: rgba(0,136, 169,0.8);
}
.heading{
  color:white;
  margin-right: auto;
  font-size: 40px;
  margin-top: auto;
  background-color: black;
}
.mathias {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 40px; /* Abstand zwischen den drei Spalten */
}

.mathias_text {
  flex: 1;
  font-size: 1.2vw;
  line-height: 1.6;
  max-width: 33%;
}

.mathias_heading_wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}

.mathias_heading {
  font-size: 2vw;
  font-weight: bold;
  transform: rotate(-90deg); /* Wenn du willst, dass der Name vertikal steht */
  white-space: nowrap;
}

.Kletterfoto img {
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  animation: 2s ease-out 0s 1 slideInLeftHeader;
}
.julian {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 40px; /* Abstand zwischen den drei Spalten */
}

.julian_text {
  flex: 1;
  font-size: 1.2vw;
  line-height: 1.6;
  max-width: 33%;
}

.julian_heading_wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}

.julian_heading {
  font-size: 2vw;
  font-weight: bold;
  transform: rotate(90deg); /* Wenn du willst, dass der Name vertikal steht */
  white-space: nowrap;
}

.julian_foto img {
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  animation: 2s ease-out 0s 1 slideInLeftHeader;
}
.footer {
  background-color: #000;
  padding: 20px 5%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 50px;
  border-top: 3px solid #0088a9;
  animation: fadeInUp 1s ease-in-out;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: black;
  background-color: black;
}

.footer a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #1de9b6;
}



@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
    border-radius: 0;
  }

  .heading {
    font-size: 24px;
    margin: 10px 0;
  }

  .nav__links {
    padding: 0;
  }

  .nav__links li {
    display: block;
    padding: 10px 0;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 10px;
  }

.mathias,
.julian {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mathias_text,
.julian_text {
  max-width: 90%;
  font-size: 4vw;
}

.mathias_heading_wrapper,
.julian_heading_wrapper {
  transform: none;
  width: auto;
  margin: 10px 0;
}

.mathias_heading,
.julian_heading {
  transform: none;
  font-size: 6vw;
}

.Kletterfoto img,
.julian_foto img {
  max-width: 80%;
  margin: 0 auto;
}
}

