:root {
  --background-color: #e9edf19d;
  --background-color-toggle: #e9edf1;
  --text-color: black;
  --primary-color: #0096ff;
  --accent-color-hover: #19dddd;
  --text-color-footer: #1d1b1b;
  --background-color-footer: #9898a3;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

@font-face {
  font-family: "Poppins";
  src: url("/Doku/src/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("/Doku/src/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.dark-mode {
  --background-color: #272525cc;
  --background-color-toggle: #2c2929;
  --text-color: #ffffff;
  --primary-color: #0e9afd;
  --accent-color-hover: #72ffff;
  --text-color-footer: #fff;
  --background-color-footer: #1c1c1c;
}
.dark-mode .hero {
  filter: brightness(80%);
}
.dark-mode .skill {
  filter: brightness(80%);
}
.dark-mode .post {
  filter: brightness(80%);
}
.dark-mode .tool {
  filter: brightness(80%);
}
.dark-mode .guide {
  filter: brightness(80%);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
}
p {
  color: var(--text-color);
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
}
#local-storage-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  background-color: var(--background-color-footer);
  text-align: center;
  z-index: 999;
}
#local-storage-banner p {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

#accept-storage {
  background-color: var(--primary-color);
  border: none;
  padding: 0.5em 1em;
  color: var(--text-color);
  cursor: pointer;
  margin-left: 1em;
}

header {
  position: sticky;
  width: 100vw;
  top: 0;
  z-index: 2;
  margin-bottom: 1rem;
  background-color: var(--background-color);
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  background: var(--background-color);
  box-shadow: 10px 10px 10px #0661a2;
  font-family: "Poppins-Bold";
}
.nav-logo {
  width: 50px;
  border: solid 4px whitesmoke;
  border-radius: 20%;
  margin-right: 0.5rem;
  box-shadow: 6px 5px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 60%;
  margin: 0.5rem;
  font-size: 1.2rem;
}
.nav-left-link {
  display: none;
  flex-wrap: wrap;
  width: 40%;
  gap: 1rem;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--background-color);
}

.nav-logo {
  height: 3rem;
}

.nav-toggle {
  appearance: none;
  border: none;
  background-color: var(--background-color);
  cursor: pointer;
}

.nav-toggle-icon {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease-out;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: inherit;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease-out;
}

.nav-toggle-icon::before {
  transform: translateY(-0.5rem);
}

.nav-toggle-icon::after {
  transform: translateY(0.5rem);
}

.nav-links {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 5rem;
  right: 0;
  width: 100%;
  background-color: var(--background-color-toggle);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links.open {
  display: flex;
}

.nav-link {
  padding: 1rem;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease-out;
}

.nav-link:hover {
  color: var(--accent-color-hover);
}

.nav-right {
  width: 50.66%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 1rem;
  font-size: 2rem;
  gap: 1rem;
}
.nav-link i {
  color: var(--primary-color);
  padding: 0.5rem;
}
.nav-link i:hover {
  color: var(--primary-color);
}
.nav-link i::after {
  content: "";
}
.nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
}
.nav-link:hover {
  color: var(--accent-color-hover);
}
.nav-link-r {
  text-decoration: none;
  color: var(--primary-color);
}
.nav-link-r:hover {
  color: var(--accent-color-hover);
}
.nav-link-r::before {
  counter-reset: "";
}
/* From Uiverse.io by Galahhad */
.theme-switch {
  --toggle-size: 10px;
  /* the size is adjusted using font-size,
     this is not transform scale,
     so you can choose any size */
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  /* radius 0 - minecraft mode :) */
  --container-light-bg: #3d7eae;
  --container-night-bg: #1d1f2c;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #ecca2f;
  --moon-bg: #c4c9d1;
  --spot-color: #959db1;
  --circle-container-offset: calc(
    (var(--circle-container-diameter) - var(--container-height)) / 2 * -1
  );
  --stars-color: #fff;
  --clouds-color: #f3fdff;
  --back-clouds-color: #aacadf;
  --transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: 0.3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
    0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
    0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
    0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
    0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius);
}

.theme-switch__checkbox {
  display: none;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    0 0 0 0.625em rgba(255, 255, 255, 0.1),
    0 0 0 1.25em rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    0 0 0 0.625em rgba(255, 255, 255, 0.1),
    0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61)
      inset,
    0em -0.062em 0.062em 0em #a1872a inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
    0em -0.062em 0.062em 0em #a1872a inset;
  -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25))
    drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25))
    drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.theme-switch__moon {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61)
      inset,
    0em -0.062em 0.062em 0em #969696 inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
    0em -0.062em 0.062em 0em #969696 inset;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  -webkit-box-shadow: 0.937em 0.312em var(--clouds-color),
    -0.312em -0.312em var(--back-clouds-color),
    1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color),
    2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color),
    2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color),
    3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color),
    4.5em -0.312em var(--clouds-color),
    3.375em -0.437em var(--back-clouds-color),
    4.625em -1.75em 0 0.437em var(--clouds-color),
    4em -0.625em var(--back-clouds-color),
    4.125em -2.125em 0 0.437em var(--back-clouds-color);
  box-shadow: 0.937em 0.312em var(--clouds-color),
    -0.312em -0.312em var(--back-clouds-color),
    1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color),
    2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color),
    2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color),
    3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color),
    4.5em -0.312em var(--clouds-color),
    3.375em -0.437em var(--back-clouds-color),
    4.625em -1.75em 0 0.437em var(--clouds-color),
    4em -0.625em var(--back-clouds-color),
    4.125em -2.125em 0 0.437em var(--back-clouds-color);
  -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__circle-container {
  left: calc(
    100% - var(--circle-container-offset) - var(--circle-container-diameter)
  );
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__circle-container:hover {
  left: calc(
    100% - var(--circle-container-offset) - var(--circle-container-diameter) -
      0.187em
  );
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
aside#scroll-to-top {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 25px;
  z-index: 999;
  line-height: 1.3em;
}
.con-grid {
  display: grid;
  width: 100vw;
  grid-template-columns: 2fr 2fr;
  grid-template-rows: auto;
  grid-template-areas:
    "hero hero "
    "skill skill"
    "post post"
    "tool tool"
    "guide guide"
    "footer footer";
}
.hero {
  display: flex;
  grid-area: hero;
  background-image: url(/Doku/src/img/hero.jpg);
  background-size: cover;
  background-position: 15%;
  height: 92vh;
  justify-content: start;
  color: var(--primary-color);
  margin-bottom: 5rem;
  box-shadow: 10px 10px 10px #0661a2;
}
.hero-title {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  margin-top: 1rem;
  font-size: 2rem;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}
.hero-title h1 {
  font-size: 3rem;
}
.hero-title h3 {
  font-size: 1rem;
}
.hero-title h4 {
  font-size: 1rem;
}
.btn-a {
  --color: var(--primary-color);
  display: inline-block;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--color);
}
.btn-a:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.btn-a:hover {
  color: #edf2f5;
}

.btn-a:before {
  top: 100%;
  left: 100%;
  transition: all 1s;
}

.btn-a:hover:before {
  top: -30px;
  left: -30px;
}

.btn-a:active:before {
  color: var(--accent-color-hover);
  transition: background 1s;
}
.modal {
  display: none;
  position: absolute;
  top: 10;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0.5rem;
  width: 100vw;
  height: 90vh;
  padding: 20px;
  border: 1px solid #888;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.closeBtn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem;
}

.closeBtn:hover,
.closeBtn:focus {
  color: rgb(230, 219, 219);
  text-decoration: none;
  cursor: pointer;
}
.test {
  display: flex;
  position: relative;
  top: 20;
  left: 20;
  width: 80vw;
  height: 90vh;
  flex-direction: column;
  overflow: auto;
}
.modal-text h2 {
  text-align: left;
  margin-top: 10px;
}
.modal-text p {
  text-align: left;
  margin-top: 20px;
  color: #ffffff;
}
.modal-content img {
  display: none;
  margin-right: 5rem;
}

.free1 {
  grid-area: free1;
}
.skill {
  grid-area: skill;
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.skill h2 {
  margin-bottom: 1rem;
  scroll-margin-top: 7.5rem;
}
.skill img {
  margin: 0.5rem;
  border-radius: 27px;
  background: linear-gradient(145deg, #f0f0f0, #cacaca);
}
.skill .img1 {
  width: 128px;
  height: 128px;
  padding: 1rem;
  margin-right: 2rem;
}

.container-circular {
  display: flex;
  width: 90vw; /* Etwas kleiner als der Hauptcontainer */
  padding: 50px 0;
  border-radius: 8px;
  background: var(--background-color);
  row-gap: 15px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 5vw; /* Abstand zwischen den Containern */
  transform: scale(0.9); /* Etwas verkleinern */
  opacity: 0.6; /* Etwas durchsichtig */
  transition: transform 0.5s ease, opacity 0.5s ease; /* Glatte Übergänge */
}
.circular-progress {
  position: relative;
  height: 140px;
  width: 140px;
  border-radius: 50%;
  background: conic-gradient(#0096ff 3.6deg, #ededed 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circular-progress::before {
  content: "";
  position: absolute;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background-color: #fff;
}
.progress-value {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  color: #0096ff;
}
.text {
  font-size: 30px;
  font-weight: 500;
  color: #606060;
}
.free2 {
  grid-area: free2;
}
.post {
  grid-area: post;
}
.post h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  scroll-margin-top: 5rem;
}

.postsborder {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
  border-bottom: solid var(--primary-color) 1px;
}
.postsborder h3 {
  text-align: start;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.post-inner {
  display: flex;
  flex-direction: column;
}
.post-inner-img {
  margin: 1rem;
}
.img-post {
  width: 30%;
  width: 400px;
  height: 250px;
}
.img-post:hover {
  border: solid 3px var(--primary-color);
}
.post-inner-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
}
.post-inner p {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.logo-p {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 0.5rem;
}
.logo-p a {
  margin: 0.5rem;
  text-decoration: none;
  color: var(--text-color);
}
.logo-p a:hover {
  text-decoration: underline;
}
.logo-p p {
  margin-bottom: 1rem;
}
.tool {
  grid-area: tool;
  margin-top: 5rem;
}
.tool h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  scroll-margin-top: 5rem;
}
.guide {
  grid-area: guide;
  margin-top: 5rem;
}
.guide h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  scroll-margin-top: 5rem;
}
#menu-button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
}
footer {
  background: var(--background-color-footer);
}
.links-footer a {
  text-decoration: none;
  color: var(--text-color-footer);
}
.links {
  width: 100%;
  color: var(--text-color);
  font-size: 12px;
}
.links-inner {
  display: flex;
  justify-content: space-between;
  margin: 1rem;
  padding: 0;
}
.links-inner h3 {
  color: var(--text-color);
}
.footer-links-wi {
  display: flex;
  flex-direction: column;
}
.links li {
  line-height: 2;
  list-style: none;
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
}
.links-footer {
  display: flex;
  grid-area: footer;
}
.links-footer a:hover {
  text-decoration: underline;
}
.footer-links-sm {
  display: flex;
  font-size: 2rem;
  margin-right: 5rem;
}
.footer-links-sm a {
  padding-right: 1rem;
}
@media only screen and (min-width: 1440px) {
  header {
    position: sticky;
    width: 100vw;
    top: 0;
    z-index: 2;
    margin-bottom: 1rem;
    background-color: var(--background-color);
  }
  .nav-flex {
    display: flex;
    justify-content: space-between;
    background: var(--background-color);
    box-shadow: 10px 10px 10px #0661a2;
    font-family: "Poppins-Bold";
  }
  .nav-logo {
    width: 50px;
    border: solid 4px whitesmoke;
    border-radius: 20%;
    margin-right: 0.5rem;
    box-shadow: 6px 5px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .nav-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    margin: 0.5rem;
    font-size: 1.2rem;
  }
  .nav-left-link {
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    gap: 1rem;
  }
  .nav-container {
    display: none;
  }

  .nav-right {
    width: 10.66%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-right: 1rem;
    font-size: 2rem;
  }
  .nav-link i {
    color: var(--primary-color);
    padding: 0.5rem;
  }
  .nav-link i:hover {
    color: var(--primary-color);
  }
  .nav-link i::after {
    content: "";
  }
  .nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
  }
  .nav-link:hover {
    color: var(--accent-color-hover);
  }
  .nav-link-r {
    text-decoration: none;
    color: var(--primary-color);
  }
  .nav-link-r:hover {
    color: var(--accent-color-hover);
  }
  .nav-link-r::before {
    counter-reset: "";
  }
  aside#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
    line-height: 1.3em;
  }
  .con-grid {
    display: grid;
    width: 100vw;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "hero hero hero hero"
      "free1 skill skill free2"
      "free1 post post free2"
      "free1 tool tool free2"
      "free1 guide guide free2"
      "footer footer footer footer";
  }
  .hero {
    display: flex;
    grid-area: hero;
    background-image: url(/Doku/src/img/hero.jpg);
    background-size: cover;
    background-position: 15%;
    height: 92vh;
    justify-content: start;
    color: var(--primary-color);
    margin-bottom: 5rem;
    box-shadow: 10px 10px 10px #0661a2;
  }
  .hero-title {
    display: flex;
    flex-direction: column;
    margin-left: 7rem;
    margin-top: 7rem;
    font-size: 2rem;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
  }
  .hero-title h1 {
    font-size: 4rem;
  }
  .hero-title h3 {
    font-size: 1.7rem;
  }
  .hero-title h4 {
    font-size: 1.3rem;
  }
  .btn-a {
    --color: var(--primary-color);
    display: inline-block;
    width: 8em;
    height: 2.6em;
    line-height: 2.5em;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--color);
  }
  .btn-a:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
  }

  .btn-a:hover {
    color: #edf2f5;
  }

  .btn-a:before {
    top: 100%;
    left: 100%;
    transition: all 1s;
  }

  .btn-a:hover:before {
    top: -30px;
    left: -30px;
  }

  .btn-a:active:before {
    color: var(--accent-color-hover);
    transition: background 1s;
  }
  .test {
    display: flex;
    position: relative;
    top: 20;
    left: 20;
    width: 50vw;
    height: 90vh;
    flex-direction: column;
    overflow: auto;
  }
  .modal-content img {
    display: block;
    margin-right: 5rem;
  }

  .free1 {
    grid-area: free1;
  }
  .skill {
    grid-area: skill;
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100vh;
  }
  .skill h2 {
    margin-bottom: 1rem;
    scroll-margin-top: 7.5rem;
  }
  .skill img {
    margin: 1rem;
    border-radius: 27px;
    background: linear-gradient(145deg, #f0f0f0, #cacaca);
  }
  .skill .img1 {
    width: 286px;
    height: 256px;
    padding: 1rem;
  }
  .carousel-container {
    overflow: hidden;
    width: 90vw;
    margin: 0 auto; /* Zentrierung des Containers */
  }

  .carousel-slide {
    display: flex;
    transition: all 0.5s ease;
  }

  .skill-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .container-circular {
    display: flex;
    width: 90vw;
    padding: 50px 0;
    border-radius: 8px;
    background: var(--background-color);
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 0vw;
  }
  .circular-progress {
    position: relative;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background: conic-gradient(#0096ff 3.6deg, #ededed 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .circular-progress::before {
    content: "";
    position: absolute;
    height: 210px;
    width: 210px;
    border-radius: 50%;
    background-color: #fff;
  }
  .progress-value {
    position: relative;
    font-size: 40px;
    font-weight: 600;
    color: #0096ff;
  }
  .text {
    font-size: 30px;
    font-weight: 500;
    color: #606060;
  }
  .postsborder {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: solid var(--primary-color) 1px;
  }
  .postsborder h3 {
    text-align: start;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .post-inner {
    display: flex;
    flex-direction: row;
  }
  .post-inner-img {
    width: 25%;
  }
  .img-post {
    width: 30%;
    width: 400px;
    height: 250px;
  }
  .img-post:hover {
    border: solid 3px var(--primary-color);
  }
  .post-inner-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
  }
  .post-inner p {
    padding-left: 1rem;
  }
  .logo-p {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 0.5rem;
  }
  .tool {
    grid-area: tool;
    margin-top: 5rem;
  }
  .tool h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    scroll-margin-top: 5rem;
  }
  .guide {
    grid-area: guide;
    margin-top: 5rem;
  }
  .guide h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    scroll-margin-top: 5rem;
  }
  #menu-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
  }
  footer {
    background: var(--background-color-footer);
  }
  .links-footer a {
    text-decoration: none;
    color: var(--text-color-footer);
  }
  .links {
    width: 100%;
    color: var(--text-color);
    font-size: 12px;
  }
  .links-inner {
    display: flex;
    justify-content: space-between;
    margin: 1rem;
    padding: 0;
  }
  .footer-links-wi {
    display: flex;
    flex-direction: column;
  }
  .links li {
    line-height: 2;
    list-style: none;
  }
  .footer ul {
    display: flex;
    flex-wrap: wrap;
  }
  .links-footer {
    display: flex;
    grid-area: footer;
  }
  .links-footer a:hover {
    text-decoration: underline;
  }
  .footer-links-sm {
    display: flex;
    font-size: 3rem;
    margin-right: 5rem;
  }
  .footer-links-sm a {
    padding-right: 1rem;
  }
}
