@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500&family=Quicksand:wght@300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Quicksand:wght@300;600&display=swap");
@import url(http://fonts.googleapis.com/css?family=Chewy);
:root {
  --main-brand-color: steelblue;
  --primary-color: #243848;
  --secondary-color: #36556D;
  --secondary-color-light: #6D3539;
  --text-color: #ffffff;
  --secondary-text-color: lightgreen;
}

* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: var(--primary-color);
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  color: var(--text-color);
}

h1 {
  font-size: 4rem;
  line-height: 100%;
}
h1 span {
  color: var(--main-brand-color);
  font-size: 3.5rem;
  font-weight: bold;
}

h2 {
  font-size: 3rem;
  text-align: center;
}

h3 {
  font-size: 2.5rem;
}

.subheading {
  margin-top: 25px;
  color: var(--text-color);
}

header {
  padding: 100px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.header_text {
  width: 850px;
}

.profilbild {
  width: 400px;
  height: 400px;
  max-width: 80vw;
  max-height: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 20px solid var(--main-brand-color);
}
.profilbild img {
  width: 600px;
  transform: perspective(800px) rotateY(25deg) scale(0.9) rotateX(10deg);
  filter: blur(2px);
  opacity: 0.2;
  transition: 0.6s ease all;
}
.profilbild img:hover {
  transform: perspective(800px) rotateY(-15deg) translateY(50px) rotateX(10deg) scale(1.2);
  filter: blur(0);
  opacity: 1;
}

nav {
  margin-bottom: 120px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav a {
  color: var(--secondary-text-color);
  text-decoration: none;
  position: relative;
  padding: 3px;
}
nav a:hover {
  color: var(--text-color);
}
nav a::after {
  content: "";
  height: 2px;
  width: 0;
  background: var(--main-brand-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 150ms ease-in-out;
}
nav a:hover::after {
  width: 100%;
}

#toggle-button {
  display: none;
}

label[for=toggle-button] {
  display: none;
}

label[for=toggle-button] span {
  font-size: 40px;
}

.flex-container {
  margin-top: 50px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1em;
}

.card {
  width: 25em;
  height: 30em;
  max-width: calc(75% - 40px);
  background-color: var(--secondary-color-light);
  border-radius: 50px;
  padding: 1em;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  overflow: auto;
}
.card h3 {
  height: 2.25em;
  font-size: 1.75rem;
}
.card ul li {
  text-align: left;
  list-style-type: none;
}
.card p {
  margin: 0;
  font-size: 1.5rem;
}
.card a {
  background-color: var(--main-brand-color);
  width: max-content;
  padding: 15px 40px;
  border-radius: 50px;
  margin: 0 auto;
  text-decoration: none;
  color: var(--text-color);
  border: 4px solid var(--main-brand-color);
  transition: 150ms ease-in-out;
}
.card a:hover {
  background: transparent;
}

.essay_pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.essay_pic img {
  width: 100%;
  height: auto;
}

.card * {
  text-align: center;
}

.card_essay {
  width: 80vw;
  height: 80vh;
}
.card_essay p {
  text-align: left;
}
.card_essay ol {
  padding-left: 10%;
}
.card_essay ol li {
  font-size: 1.5rem;
  text-align: left;
}

/* --------------------------------About Me-Sektion -------------------------------- */
#about_me_section {
  padding: 100px 0;
  background-color: var(--main-brand-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap-reverse;
}
#about_me_section img {
  width: 400px;
  max-width: calc(90% - 30px);
  border: 15px solid var(--text-color);
}

.about_me_container {
  width: 750px;
  max-width: 90%;
}
.about_me_container p {
  text-align: justify;
  line-height: 175%;
}

/* --------------------------------Writer-Sektion -------------------------------- */
#writer_section {
  padding: 70px 0;
  background-color: var(--primary-color);
}
#writer_section p {
  padding: 0.5em 0;
}

.button {
  position: absolute;
  height: 2em;
  bottom: 2em;
  align-self: center;
}

/* --------------------------------Further Me-Sektion -------------------------------- */
#further_me_section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 2%;
  background-color: var(--primary-color);
  margin-bottom: 2em;
}

.facts-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.facts-container h3 {
  width: 90%;
  font-size: 1.25rem;
  padding: 0.5em 0 0.5em 0.5em;
  border-top: solid 3px var(--secondary-color-light);
  border-left: solid 3px var(--secondary-color-light);
}

.facts_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px;
  gap: 10px;
  font-size: 1rem;
  background-color: var(--secondary-color-light);
}
.facts_item ul {
  text-decoration: none;
  list-style-type: none;
  font-size: 1.25rem;
}
.facts_item ul li span {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--secondary-text-color);
}
.facts_item img {
  height: 150px;
  width: 150px;
}
.facts_item span {
  font-weight: bold;
  color: var(--secondary-text-color);
}
.facts_item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.5em 0;
}

.facts_item_halb {
  width: 100%;
  height: auto;
}
.facts_item_halb ul {
  padding-left: 2em;
}

.ib_row {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.ib_row img {
  width: 400px;
  height: 300px;
  margin-top: 1em;
}

.ib_column {
  display: flex;
  flex-direction: column;
}

footer {
  padding: 70px;
  background-color: var(--secondary-color);
}
footer h2 {
  font-size: 50px;
  text-align: center;
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 8vw;
    text-align: center;
  }
  h1 span {
    font-size: 8vw;
    text-align: center;
  }
  h2 {
    text-align: center;
    font-size: 5vw;
    color: yellow;
  }
  .subheading {
    text-align: center;
  }
  nav {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    border-radius: 0 0 25px 0;
  }
  nav ul {
    display: none;
    flex-direction: column;
  }
  #toggle-button:checked ~ ul {
    display: flex;
    width: 120px;
    padding: 15px;
    background: var(--secondary-color);
  }
  #toggle-button:checked ~ ul a {
    color: var(--text-color);
  }
  label[for=toggle-button] {
    display: block;
  }
  .profilbild {
    width: 250px;
    height: 250px;
    border: 5px solid var(--main-brand-color);
  }
  .profilbild img {
    width: 400px;
  }
  .flex-container {
    width: 100vw;
    height: auto;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .card {
    width: 18em;
    height: 25em;
    max-width: calc(75% - 40px);
    border-radius: 15px;
    padding: 1em;
    margin: 0.5em 0;
  }
  .card h3 {
    font-size: 1.1rem;
    padding: 0.5em 0;
  }
  .card p {
    font-size: 1rem;
    line-height: 1.2;
  }
  .card a {
    width: max-content;
    padding: 5px 10px;
  }
  .button {
    bottom: 1em;
  }
  .button a {
    font-size: 1rem;
  }
  .facts-container {
    width: 90%;
    justify-content: center;
    align-items: flex-start;
  }
  .facts_item {
    width: 100%;
    padding: 5px 0;
    gap: 10px;
  }
  .facts_item ul {
    text-decoration: none;
    list-style-type: none;
    font-size: 1rem;
  }
  .facts_item ul li span {
    font-weight: bold;
    color: var(--secondary-text-color);
  }
  .facts_item h3 {
    font-size: 1.25rem;
  }
  .facts_item_halb ul {
    padding: 0.5em;
  }
}
@media (max-width: 650px) {
  .facts_item {
    padding: 20px;
  }
  .facts_item img {
    height: 100px;
    width: 100px;
  }
  .facts_item h3 {
    font-size: 24px;
  }
}/*# sourceMappingURL=general_settings.css.map */