@font-face {
  font-family: 'Manrope Variable';
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Manrope-VariableFont_wght.ttf);
}
@font-face {
  font-family: 'SourceCodePro Variable';
  font-style: normal;
  font-display: swap;
  src: url(/fonts/SourceCodePro-VariableFont_wght.ttf);
}
html {
  font-family: 'Manrope Variable', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: max(14px, calc(.475vw + 9px));
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-size: max(0.875rem, min(calc(0.8rem + 0.475vw), 1.25rem));
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  scroll-behavior: smooth;
}
:root {
  --main-background-color: #2D2180;
  --font-color-light: #DBD6F1;
  --font-color-medium: #C2B3FD;
  --font-color-dark: #A48BFF;
  --content-max-width: 55rem;
  --content-max-width-padding: calc(max(2rem, 100vw - 55rem) / 2);
  --content-container-margin: 3em;
  --content-container-width-padding: 5rem;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--main-background-color);
  color: var(--font-color-medium);
  font-weight: 400;
  margin: 0;
  position: relative;
}
h1 {
  font-size: clamp(2em, 2em + 4vw, 6em);
  font-weight: 600;
  line-height: 1.1em;
  margin: 0.5em 0 0;
  color: var(--font-color-medium);
}
h1 + p {
  font-family: 'SourceCodePro Variable', 'Manrope Variable', Helvetica;
  color: var(--font-color-dark);
  font-size: 2.5em;
  line-height: 1.1em;
}
h2 {
  font-size: clamp(2em, 2em + 4vw, 5em);
  font-weight: 600;
  line-height: 1em;
  margin-top: 0;
}
h3 {
  font-size: 3em;
  margin-top: 0.5em;
}
a {
  text-decoration: none;
  color: var(--font-color-dark);
  cursor: none;
}
p {
  color: var(--font-color-light);
}
@keyframes link-animation {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.5em);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes navbackground {
  0% {
    z-index: 3;
  }
  99.9% {
    z-index: 3;
  }
  100% {
    z-index: -1;
  }
}
.cursor-circle {
  height: 1em;
  width: 1em;
  background-color: #6E4CFF;
  border-radius: 100%;
  pointer-events: none;
  opacity: 0.7;
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: height 0.4s, width 0.4s, opacity 0.4s;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .cursor-circle {
    display: none;
  }
}
.cursor-circle.hover {
  opacity: 0.5;
  height: 3em;
  width: 3em;
  z-index: 10;
  transition: height 0.4s, width 0.4s, opacity 0.4s;
}
header {
  position: relative;
  margin-left: var(--content-max-width-padding);
  margin-right: var(--content-max-width-padding);
  padding: 0 var(--content-container-width-padding);
}
header .mobileMenuButton {
  display: none;
  background-color: transparent;
  border: none;
  height: 3.5em;
  width: 3.5em;
  position: absolute;
  top: 3em;
  right: 1.5em;
  z-index: 4;
}
@media (min-width: 1px) and (max-width: 480px) {
  header .mobileMenuButton {
    display: block;
  }
}
header .mobileMenuButton.closed {
  transform: rotate(0deg);
  transition: transform 0.3s;
}
header .mobileMenuButton.open {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
header .mobileMenuButton img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.5em;
  height: 2.5em;
}
header nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;
}
@media (min-width: 1px) and (max-width: 480px) {
  header nav {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    z-index: -1;
    font-size: 2em;
    font-weight: 500;
    gap: 2em;
    margin-top: 0;
    top: 0;
    left: -4%;
    overflow: hidden;
  }
}
header nav.closed {
  transition: background-color 0.4s;
  background-color: #ffffff00;
  z-index: 0;
  animation: navbackground 0.1s;
  animation-delay: 0.5s;
}
header nav.open {
  margin-top: 0;
  background-color: var(--main-background-color);
  opacity: 0.92;
  top: 0;
  left: -4%;
  transition: background-color 0.4s;
  width: 100vw;
  height: 100vh;
  z-index: 3;
}
header nav.open a {
  transform: translateX(0);
  transition: transform 0.7s, opacity 0.4s;
  opacity: 1;
  padding-left: calc(var(--content-container-width-padding) + var(--content-max-width-padding));
  font-weight: 500;
}
header nav.closed a {
  transform: translateX(0);
  transition: transform 0.3s;
}
@media (min-width: 1px) and (max-width: 480px) {
  header nav.closed a {
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
  }
}
header nav a {
  display: flex;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 1px) and (max-width: 480px) {
  header nav a {
    padding-left: calc(var(--content-container-width-padding) + var(--content-max-width-padding));
    transform: translateX(120%);
  }
}
header nav a:not(:first-child) {
  margin-left: 3em;
}
@media (min-width: 1px) and (max-width: 480px) {
  header nav a:not(:first-child) {
    margin-left: 0;
    padding-left: calc(var(--content-container-width-padding) + var(--content-max-width-padding));
  }
}
header nav a:hover {
  transform: translateY(-0.2em);
  transition: transform 0.3s;
}
header nav a:hover:after {
  animation: link-animation 0.8s;
  animation-iteration-count: infinite;
}
header nav a:after {
  display: block;
  content: url(/images/link-arrow.svg);
  height: auto;
  width: 0.7em;
  margin-left: 2em;
  padding-top: 0.2em;
}
.content-container {
  margin: var(--content-container-margin) var(--content-max-width-padding);
  padding: 0 var(--content-container-width-padding);
}
.bg {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.bg #stroke-normal-6 {
  position: absolute;
  width: 11em;
  bottom: 9%;
  left: 10%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 1200px) {
  .bg #stroke-normal-6 {
    bottom: 1%;
  }
}
.bg #rive-stroke-7 {
  position: absolute;
  bottom: 4%;
  right: 5%;
  width: 20em;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 900px) {
  .bg #rive-stroke-7 {
    display: none;
  }
}
.bg #rive-stroke-7 img {
  position: absolute;
}
.bg #rive-stroke-7 canvas {
  width: 100%;
}
.bg #stroke-normal-5 {
  position: absolute;
  bottom: 15%;
  width: 27em;
  right: 15%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 900px) {
  .bg #stroke-normal-5 {
    display: none;
  }
}
.bg #stroke-normal-4 {
  position: absolute;
  bottom: 38%;
  width: 24em;
  right: 3%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 850px) {
  .bg #stroke-normal-4 {
    display: none;
  }
}
.bg #rive-stroke-6 {
  position: absolute;
  bottom: 26%;
  width: 21em;
  left: 2%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 850px) {
  .bg #rive-stroke-6 {
    display: none;
  }
}
.bg #rive-stroke-6 img {
  position: absolute;
}
.bg #rive-stroke-6 canvas {
  width: 100%;
}
.bg #rive-stroke-5 {
  position: absolute;
  bottom: 16%;
  width: 46em;
  left: 10%;
  z-index: -1;
}
.bg #rive-stroke-5 img {
  position: absolute;
}
.bg #rive-stroke-5 canvas {
  width: 100%;
}
.bg #rive-stroke-4 {
  position: absolute;
  width: 36em;
  top: 48%;
  right: 6%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 700px) {
  .bg #rive-stroke-4 {
    top: 49%;
  }
}
.bg #rive-stroke-4 img {
  position: absolute;
}
.bg #rive-stroke-4 canvas {
  width: 100%;
}
.bg #stroke-normal-3 {
  position: absolute;
  top: 50%;
  width: 26em;
  left: 11%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 1300px) {
  .bg #stroke-normal-3 {
    display: none;
  }
}
.bg #stroke-normal-2 {
  position: absolute;
  top: 26%;
  width: 47em;
  right: 16%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 600px) {
  .bg #stroke-normal-2 {
    top: 16%;
  }
}
@media (min-width: 601px) and (max-width: 850px) {
  .bg #stroke-normal-2 {
    top: 21%;
  }
}
.bg #rive-stroke-3 {
  position: absolute;
  top: 21%;
  width: 38em;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 850px) {
  .bg #rive-stroke-3 {
    display: none;
  }
}
@media (min-width: 851px) and (max-width: 1400px) {
  .bg #rive-stroke-3 {
    top: 18%;
  }
}
.bg #rive-stroke-3 img {
  position: absolute;
}
.bg #rive-stroke-3 canvas {
  width: 100%;
}
.bg #rive-stroke-2 {
  position: absolute;
  top: 12%;
  width: 23em;
  right: 15%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 500px) {
  .bg #rive-stroke-2 {
    top: 9%;
    right: -15%;
  }
}
.bg #rive-stroke-2 img {
  position: absolute;
}
.bg #rive-stroke-2 canvas {
  width: 100%;
}
.bg #stroke-normal-1 {
  position: absolute;
  top: 10%;
  width: 12em;
  left: 12%;
  z-index: -1;
}
@media (min-width: 1px) and (max-width: 700px) {
  .bg #stroke-normal-1 {
    display: none;
  }
}
.bg #rive-stroke-1 {
  position: absolute;
  top: 0;
  width: 40em;
  left: 0;
  z-index: -1;
}
.bg #rive-stroke-1 canvas {
  width: 100%;
}
.bg #rive-stroke-1 img {
  position: absolute;
  width: 100%;
  top: -33%;
}
@media (min-width: 1px) and (max-width: 700px) {
  .bg #rive-stroke-1 {
    left: -23%;
    width: 26em;
    top: 1%;
  }
}
#contact-container .rive-contact-computer {
  display: block;
  position: relative;
  height: 34em;
}
#contact-container .rive-contact-computer .rive {
  height: 700px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  z-index: 0;
}
@media (min-width: 1px) and (max-width: 400px) {
  #contact-container .rive-contact-computer .rive {
    height: 200px;
  }
}
@media (min-width: 401px) and (max-width: 600px) {
  #contact-container .rive-contact-computer .rive {
    height: 300px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  #contact-container .rive-contact-computer .rive {
    height: 400px;
  }
}
@media (min-width: 901px) and (max-width: 1750px) {
  #contact-container .rive-contact-computer .rive {
    height: 500px;
  }
}
#contact-container .rive-contact-computer #canvas-contact-computer {
  height: 700px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  z-index: 1;
}
@media (min-width: 1px) and (max-width: 450px) {
  #contact-container .rive-contact-computer #canvas-contact-computer {
    height: 200px;
  }
}
@media (min-width: 451px) and (max-width: 600px) {
  #contact-container .rive-contact-computer #canvas-contact-computer {
    height: 300px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  #contact-container .rive-contact-computer #canvas-contact-computer {
    height: 400px;
  }
}
@media (min-width: 901px) and (max-width: 1750px) {
  #contact-container .rive-contact-computer #canvas-contact-computer {
    height: 500px;
  }
}
#projects-container .rive-contact-button {
  float: right;
  margin-top: 2em;
}
#projects-container .rive-contact-button #canvas-contact-button {
  width: 9em;
}
#projects-container h2 {
  margin-bottom: 1.3em;
}
#projects-container .blaze-slider button {
  background: transparent;
  border: none;
}
#projects-container .blaze-slider button.blaze-prev {
  position: absolute;
  top: 23%;
  left: -3%;
  transition: transform 0.4s;
}
@media (min-width: 1px) and (max-width: 500px) {
  #projects-container .blaze-slider button.blaze-prev {
    top: 13%;
    left: -6%;
  }
}
@media (min-width: 501px) and (max-width: 600px) {
  #projects-container .blaze-slider button.blaze-prev {
    top: 16%;
  }
}
#projects-container .blaze-slider button.blaze-prev:hover {
  transform: translateY(-0.5em);
  transition: transform 0.4s;
}
#projects-container .blaze-slider button.blaze-next {
  position: absolute;
  top: 23%;
  right: -3%;
  transition: transform 0.4s;
}
@media (min-width: 1px) and (max-width: 500px) {
  #projects-container .blaze-slider button.blaze-next {
    top: 13%;
    right: -6%;
  }
}
@media (min-width: 501px) and (max-width: 600px) {
  #projects-container .blaze-slider button.blaze-next {
    top: 16%;
  }
}
#projects-container .blaze-slider button.blaze-next:hover {
  transform: translateY(-0.7em);
  transition: transform 0.4s;
}
#projects-container .blaze-slider button img {
  width: 1.5em;
}
#projects-container .blaze-slider .slide .slide-text {
  display: flex;
  align-items: center;
  margin-top: 5em;
  gap: 6em;
  padding: 1em;
}
@media (min-width: 1px) and (max-width: 600px) {
  #projects-container .blaze-slider .slide .slide-text {
    flex-direction: column-reverse;
  }
}
#projects-container .blaze-slider .slide .slide-text #finanz-werkzeuge-logo {
  width: 150%;
}
@media (min-width: 1px) and (max-width: 600px) {
  #projects-container .blaze-slider .slide .slide-text #finanz-werkzeuge-logo {
    width: 100%;
  }
}
#projects-container .blaze-slider .slide .slide-text a {
  width: 100%;
  color: var(--font-color-medium);
}
@media (min-width: 1px) and (max-width: 600px) {
  #projects-container .blaze-slider .slide .slide-text a {
    width: 60%;
  }
}
#projects-container .blaze-slider .slide .slide-box {
  overflow-y: scroll;
  border-radius: 1em;
  margin: auto;
  width: 90%;
  height: 46vh;
  scrollbar-width: none;
}
#projects-container .blaze-slider .slide .slide-box::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1px) and (max-width: 500px) {
  #projects-container .blaze-slider .slide .slide-box {
    height: 38vh;
  }
}
#projects-container .blaze-slider .slide .slide-box a {
  width: -moz-available;
  width: -webkit-fill-available;
  display: inline-block;
}
#projects-container .blaze-slider .slide .slide-box picture {
  width: inherit;
}
#projects-container .blaze-slider .slide .slide-box picture img {
  width: inherit;
  border-radius: 1em;
}
#introduction-container {
  margin-top: 10em;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1px) and (max-width: 500px) {
  #introduction-container {
    margin-top: 6em;
  }
}
#introduction-container .rive-about-me-button {
  display: inline-block;
  justify-self: end;
  position: relative;
}
#introduction-container .rive-about-me-button img {
  position: absolute;
  width: 17.9em;
}
#introduction-container .rive-about-me-button #canvas-about-me-button {
  width: 18em;
}
#introduction-container .rive-about-me-button #canvas-about-me-button canvas {
  width: 100%;
}
#introduction-container .rive-pixel-me {
  display: inline-block;
  position: relative;
  height: 30em;
}
@media (min-width: 1px) and (max-width: 550px) {
  #introduction-container .rive-pixel-me {
    margin-left: -3em;
    height: 24em;
  }
}
#introduction-container .rive-pixel-me .rive {
  position: absolute;
  top: 0;
  left: 0;
  height: 400px;
}
@media (min-width: 1px) and (max-width: 550px) {
  #introduction-container .rive-pixel-me .rive {
    height: 300px;
  }
}
#introduction-container .rive-pixel-me #canvas-pixel-me {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 400px;
}
@media (min-width: 1px) and (max-width: 550px) {
  #introduction-container .rive-pixel-me #canvas-pixel-me {
    height: 300px;
  }
}
#about-me-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 2em;
}
@media (min-width: 1px) and (max-width: 700px) {
  #about-me-container {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
}
#about-me-container h2 {
  grid-column: 1 / span 2;
}
#about-me-container .skills-box {
  position: relative;
}
@media (min-width: 1px) and (max-width: 700px) {
  #about-me-container .skills-box {
    grid-column: 1;
    height: 45em;
  }
}
#about-me-container .skills-box .skills-logos #git {
  position: absolute;
  top: 9%;
  left: 34%;
}
#about-me-container .skills-box .skills-logos #ts {
  position: absolute;
  top: 29%;
  left: 36%;
}
#about-me-container .skills-box .skills-logos #npm {
  position: absolute;
  left: 5%;
  top: 18%;
}
#about-me-container .skills-box .skills-logos #astro {
  position: absolute;
  top: 20%;
  right: 20%;
}
#about-me-container .skills-box .skills-logos #css {
  position: absolute;
  top: 37%;
  left: 5%;
}
#about-me-container .skills-box .skills-logos #html {
  position: absolute;
  top: 38%;
  right: 7%;
}
#about-me-container .skills-box .skills-logos #js {
  position: absolute;
  top: 47%;
  right: 43%;
}
#about-me-container .skills-box .skills-logos #moho {
  position: absolute;
  left: 6%;
  top: 58%;
}
#about-me-container .skills-box .skills-logos #affinity-designer {
  position: absolute;
  bottom: 26%;
  right: 42%;
}
#about-me-container .skills-box .skills-logos #rive {
  position: absolute;
  bottom: 30%;
  right: 6%;
}
#about-me-container .skills-box .skills-logos #davinci {
  position: absolute;
  bottom: 8%;
  left: 16%;
}
#about-me-container .skills-box .skills-logos #affinity-photo {
  position: absolute;
  bottom: 8%;
  right: 17%;
}
#about-me-container .skills-box .skills-logos #astro img {
  width: 6em;
}
#about-me-container .skills-box .skills-logos a {
  display: inline-block;
}
#about-me-container .skills-box .skills-logos img {
  width: 4em;
  transition: transform 0.3s;
}
#about-me-container .skills-box .skills-logos img#npm {
  width: 5em;
}
#about-me-container .skills-box .skills-logos img:hover {
  transform: translateY(-1em);
  transition: transform 0.4s;
}
#about-me-container .rive-projects-button {
  grid-column: 2;
  justify-self: end;
  margin-top: 1em;
}
@media (min-width: 1px) and (max-width: 700px) {
  #about-me-container .rive-projects-button {
    grid-column: 1;
  }
}
#about-me-container .rive-projects-button img {
  position: absolute;
  width: 19.9em;
}
#about-me-container .rive-projects-button #canvas-projects-button {
  width: 20em;
}
footer {
  margin: 2em var(--content-max-width-padding) 4em;
  padding: 0 var(--content-container-width-padding);
}
footer nav {
  display: flex;
  justify-content: space-evenly;
}
footer nav a {
  display: flex;
}
footer nav a:hover {
  transform: translateY(-0.2em);
  transition: transform 0.3s;
}
footer nav a:hover:after {
  animation: link-animation 0.8s;
  animation-iteration-count: infinite;
}
footer nav a:after {
  display: block;
  content: url(images/link-arrow.svg);
  height: auto;
  width: 0.7em;
  margin-left: 2em;
  padding-top: 0.2em;
}
.impressum {
  margin-top: 2em;
}
.error-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.error-content h1 {
  font-size: 12em;
}
.error-content p {
  text-align: center;
}
.data-policy-headline {
  font-size: 2em;
  margin-top: 2em;
}
@media (min-width: 0) and (max-width: 650px) {
  :root {
    --content-container-width-padding: 1.5rem;
    --content-container-height-padding: 1em;
  }
  .content-container {
    padding-top: calc(var(--content-container-height-padding) * 3);
    padding-bottom: calc(var(--content-container-height-padding) * 3);
  }
}
@media (min-width: 651px) and (max-width: 760px) {
  :root {
    --content-container-width-padding: 3rem;
    --content-container-height-padding: 2em;
  }
  .content-container {
    padding-top: calc(var(--content-container-height-padding) * 2);
    padding-bottom: var(--content-container-height-padding);
  }
}
@media (min-width: 761px) {
  :root {
    --content-container-width-padding: 5rem;
    --content-container-height-padding: 5em;
  }
  .content-container {
    padding-top: var(--content-container-height-padding);
    padding-bottom: var(--content-container-height-padding);
  }
}
