@charset "UTF-8";
/*----- Styles für die "Über mich"-Seite -----*/
/*----- Über mich Abschnitt -----*/
#aboutMe {
  background-color: var(--default-green);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#aboutMe h1 {
  font-size: 4rem;
  font-family: Oswald, sans-serif;
  font-weight: 500;
}

#profile-container {
  position: relative;
  margin-bottom: 3.5rem;
}
#profile-container #profile-picture {
  width: 540px;
  height: 540px;
  border-radius: 50%;
  object-fit: cover;
}
#profile-container #profile-badges {
  width: 130px;
  height: 130px;
  position: absolute;
  display: flex;
  flex-direction: row;
  top: 85%;
  left: 60%;
}
#profile-container #profile-badges img {
  padding: 0 10px;
}

#details {
  width: 930px;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.8;
}

.bold-text {
  margin-top: 50px;
  font-weight: bold;
}
.bold-text a {
  color: white;
}

#profile-download {
  margin: 60px 0;
}
#profile-download a {
  border: 1px solid white;
  padding: 15px;
  margin-right: 50px;
  color: white;
}

/*----- Mein Angebot Abschnitt -----*/
#offer {
  color: var(--default-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 930px;
  line-height: 1.8;
  margin: 0 auto;
  padding: 80px 0 50px 0;
}
#offer h1 {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 3rem;
  padding-bottom: 20px;
  margin: 0;
}
#offer h2 {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  padding-bottom: 10px;
  margin: 50px 0 0 0;
}
#offer p {
  font-size: 1.2rem;
  font-weight: 200;
  margin: 0;
}
#offer ul {
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.4;
}

/*# sourceMappingURL=style-about.css.map */

/*----- Responsive Anpassungen -----*/
@media (max-width: 1000px) {
  #details {
    width: auto;
    max-width: 930px;
    padding: 0 1.5rem;
  }
  #offer {
    padding: 60px 1.5rem 40px 1.5rem;
  }
}
@media (max-width: 700px) {
  #aboutMe h1 {
    font-size: 2.5rem;
  }
  #profile-container #profile-picture {
    width: min(540px, 85vw);
    height: min(540px, 85vw);
  }
  #profile-container #profile-badges {
    position: static;
    width: auto;
    height: auto;
    justify-content: center;
    margin-top: 1rem;
  }
  #profile-container #profile-badges img {
    height: 90px;
    width: auto;
  }
  #details {
    font-size: 1.1rem;
  }
  #profile-download {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 40px 0;
  }
  #profile-download a {
    margin-right: 0;
    text-align: center;
  }
  #offer h1 {
    font-size: 2rem;
  }
}
