@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #161515;
}

::-webkit-scrollbar-thumb {
  background: #6d6d6d;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  scrollbar-gutter: stable;
  background-color: #262526;
  position: relative;
  overflow-anchor: none;
}

h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 20px;
}

.container-full .container {
  padding: 10px 20px;
}

.container-full {
  background-color: white;
}

/* Header */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #161515;
  position: sticky;
  top: 0;
  z-index: 2;
}
header a {
  color: white;
  text-decoration: none;
}
header a:first-child {
  background-color: black;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 5px black;
          box-shadow: 0px 0px 5px black;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  max-width: 1440px;
  padding: 0 20px;
  width: 100%;
  color: white;
}
header nav img {
  display: none;
}

.nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.nav-items .active {
  color: rgb(114, 247, 114) !important;
}
.nav-items a:hover {
  color: rgb(114, 247, 114);
}

#hamburger,
#close {
  width: 30px;
  cursor: pointer;
}

#close {
  position: absolute;
  top: 10px;
  right: 20px;
}

/* Home */
.landing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  z-index: 1;
}
.landing .landing-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.landing .landing-content .logo {
  max-width: 400px;
  width: 100%;
}

.landing-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: black;
  color: white;
  padding: 12px 15px;
  text-decoration: none;
  text-align: center;
  min-width: 180px;
}
.btn.btn-light {
  background-color: black;
  color: rgb(114, 247, 114);
}
.btn.btn-centered {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.btn:hover {
  background-color: #161515;
}

/* Particles */
#particles-js {
  background-color: #262526;
  position: fixed;
  top: 50px;
  z-index: -1;
  height: calc(100vh - 110px);
  width: 100vw;
}

main {
  background-color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main h3 {
  color: #171717;
  font-weight: bold;
  margin: 20px 0;
}
main p {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  font-weight: 100;
  margin: 20px 0;
}
main li {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  font-weight: 100;
}
main a {
  color: black;
  font-weight: bold;
}

.list {
  min-height: 120px;
}
.list p {
  margin-bottom: 0;
}

ul {
  margin-left: 5%;
}
ul li {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  font-weight: 100;
}

.job {
  background: -webkit-gradient(linear, left top, left bottom, from(#171717), to(rgb(27, 23, 23)));
  background: linear-gradient(#171717, rgb(27, 23, 23));
  border-radius: 7px;
  padding: 25px;
}
.job ul {
  margin-left: 30px;
}
.job ul li {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  font-weight: 100;
  font-style: italic;
}
.job p,
.job li {
  color: white !important;
}
.job h4 {
  color: rgb(114, 247, 114);
  font-weight: 200;
}

.heading {
  margin: 40px 0;
}
.heading h2 {
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 30px;
}
.grid.gap-10 {
  gap: 10px;
}

/* Rätsel code */
pre {
  background-color: black;
  padding: 15px;
  border-radius: 5px;
  line-height: 1.2;
  color: rgb(114, 247, 114);
  display: inline-block;
}

/* Impressum & Datenschutz */
.legal {
  max-width: 1100px;
}
.legal ul {
  margin-left: 5%;
}
.legal img {
  max-width: 170px;
  background-color: black;
}
.legal p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  margin: 15px 0;
}
.legal h2 {
  margin-bottom: 20px;
  font-size: 35px;
  margin: 20px 0;
}
.legal h3 {
  margin: 30px 0;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 27px;
  margin: 15px 0;
}
.legal h4 {
  margin: 20px 0;
  font-weight: 500;
  font-size: 19px;
  margin: 15px 0;
}
.legal div {
  margin-bottom: 30px;
}
.legal a {
  color: black;
  font-weight: bold;
  word-wrap: break-word;
}

/* Footer */
footer {
  background-color: #161515;
  padding: 20px;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: white;
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.footer-content nav a {
  text-decoration: none;
  color: white;
}

@media only screen and (max-width: 992px) {
  .list {
    min-height: 200px;
  }
}
@media only screen and (max-width: 768px) {
  header nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .container-full .container {
    padding: 10px 20px;
  }
  .heading {
    text-align: center;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  main p,
  li {
    font-size: 14px !important;
  }
  #close,
  #hamburger {
    display: block;
  }
  .nav-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #161515;
    z-index: 15;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .nav-items a {
    font-size: 20px;
  }
  main h3 {
    margin: 10px 0;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .landing .landing-content {
    gap: 20px;
  }
  .landing .landing-content .logo {
    max-width: 250px;
    width: 90%;
  }
  .landing-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  pre {
    overflow: scroll;
    max-width: 100%;
  }
  .legal h3 {
    font-size: 20px;
  }
  .legal h2 {
    font-size: 24px;
  }
  .list {
    min-height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .heading {
    margin: 25px 0;
  }
}/*# sourceMappingURL=style.css.map */