@import url(https://fonts.googleapis.com/css?family=Syne:regular,500,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Pixelify+Sans:regular,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Questrial:regular);
*, html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-surface-primary: #ffffff;
  --color-surface-secondary: #f4f4f470;
  --color-text-primary: #272727;
  --color-text-secondary: #444444;
  --color-accent: #7EB433;
  --color-cta: #ffffff;
  --blend-mode-cta: difference;
  --spacing-unit: 4px;
}

[data-theme=dark] {
  --color-surface-primary: #2E2133;
  --color-surface-secondary: #1a1a1a;
  --color-text-primary: #ddd7fc;
  --color-text-secondary: #cccccc;
  --color-accent: #7EB433;
  --color-cta: #000000;
  --blend-mode-cta: color-burn;
}

body {
  font-family: "Syne";
  color: var(--color-text-primary);
  background-color: var(--color-surface-primary);
  line-height: 1.5;
}

.cta-button {
  background: var(--color-cta);
  mix-blend-mode: var(--blend-mode-cta);
  color: var(--color-surface-primary);
  padding: 0.75rem 1rem;
  border: none;
  font-weight: 600;
  border-radius: 4px;
}

body {
  font-family: "Syne";
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text-primary);
}

h1 {
  font-size: 100px;
  line-height: 100px;
  font-weight: 400;
  margin: 0 0 1rem;
}

h2 {
  font-family: "Questrial";
  font-size: 24px;
  line-height: 30px;
}

h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

p {
  font-family: "Syne";
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media (min-width: 50px) {
  h1 {
    font-size: 30px;
    line-height: 58px;
    font-weight: 500;
  }
  h2 {
    font-size: 18px;
    line-height: 22px;
  }
  h3 {
    font-size: 16px;
    line-height: 20px;
  }
  p {
    font-size: 12px;
    line-height: 13px;
  }
}
@media (min-width: 375px) {
  h1 {
    font-size: 40px;
    line-height: 70px;
    font-weight: 500;
  }
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
  p {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 50px;
    line-height: 75px;
    font-weight: 500;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  p {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 75px;
    line-height: 75px;
    font-weight: 500;
  }
  h2 {
    font-size: 24px;
    line-height: 40px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 75px;
    line-height: 100px;
    font-weight: 500;
  }
  h2 {
    font-size: 24px;
    line-height: 40px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  p {
    font-size: 18px;
    line-height: 24px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.slide-in {
  opacity: 0;
  transform: translateY(50px);
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background-repeat: repeat;
  background-size: cover;
  background-position: center top;
  z-index: -999;
  will-change: transform;
  pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {
  .parallax-bg {
    position: fixed;
    height: 100vh;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }
}
@supports (-webkit-touch-callout: none) {
  .parallax-bg {
    position: absolute !important;
    background-attachment: scroll !important;
    height: 100vh;
  }
}
.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.488);
  color: var(--color-text-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  text-align: center;
  padding: 2rem;
  animation-fill-mode: forwards;
  overflow: hidden;
}
.welcome-modal h1,
.welcome-modal p {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}
.welcome-modal h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 50px;
  line-height: 60px;
  font-weight: 300;
  animation-delay: 1.5s;
}
.welcome-modal p {
  font-size: 1.25rem;
  font-weight: 300;
  animation-delay: 2.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.logo-animation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

#svg-stage {
  width: 75%;
  max-width: 750px;
  overflow: visible;
}

path {
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

#logo-path {
  opacity: 0;
}

body, a, button {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 0, 0, 0.9);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease;
  z-index: 9999;
  opacity: 0;
  animation: rainbow-cursor 5s linear infinite;
}

body:hover .custom-cursor {
  opacity: 1;
}

.custom-cursor.active {
  width: 25px;
  height: 25px;
}

@keyframes rainbow-cursor {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}
body {
  margin: 0;
  padding: 0;
  color: var(--color-text-primary);
  font-family: "Syne";
}

.container {
  position: relative;
  max-width: 100vw;
  margin: auto;
  background-image: url(/gif/pixels-bg.gif);
  background-position: contain;
}

.logo-button {
  background: none;
  border: none;
  padding: 0;
  position: fixed;
  top: 1rem;
  right: 105%;
  z-index: 5000;
}
.logo-button svg path {
  fill: var(--color-text-primary);
  width: 40px;
}
.logo-button p {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
  color: var(--color-text-primary);
}
.logo-button span {
  display: none;
}

@media (max-width: 767px) {
  .logo-button {
    position: fixed;
    top: 8px;
    right: 105%;
  }
  .logo-button svg {
    width: 48px;
    height: auto;
    display: none;
  }
  .logo-button p {
    display: none;
  }
  .logo-button span {
    display: block;
    font-size: 48px;
    color: var(--color-text-primary);
  }
}
.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 30%;
  border-left: solid 1px var(--color-text-primary);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
.header-nav .mode-box {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header-nav #theme-toggle {
  background: none;
  border: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font: inherit;
  outline: inherit;
}
.header-nav #theme-toggle img {
  border: none;
  padding-top: 0.25rem;
  margin: 0.5rem;
  width: 4rem;
  height: 4rem;
  transition: transform 0.5s ease;
}
.header-nav #theme-toggle img[data-mode=light]:hover {
  content: url("../img/icon-moon-filled.svg");
}
.header-nav #theme-toggle img[data-mode=dark]:hover {
  content: url("../img/icon-sun-filled.svg");
}
.header-nav.open {
  transform: translateX(0);
}
.header-nav svg path {
  fill: var(--color-text-primary);
}
.header-nav .aside-nav {
  list-style: none;
  width: 100%;
}
.header-nav .aside-nav li {
  border-bottom: solid 1px var(--color-text-primary);
  width: 100%;
  margin-right: 0.5rem;
}
.header-nav .aside-nav li a {
  display: block;
  width: 100%;
  font-family: "Questrial";
  font-size: 2rem;
  line-height: 1.2;
  min-height: 2.4rem;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}
.header-nav .aside-nav li a:active {
  color: var(--color-accent);
  font-family: "Pixelify Sans";
}
.header-nav .aside-nav li a:hover {
  font-family: "Pixelify Sans";
  transform: translateY(-4px);
  color: var(--color-accent);
}
.header-nav .aside-projects {
  margin-top: 0.5rem;
}
.header-nav .aside-projects li {
  list-style: none;
}
.header-nav .aside-projects li a {
  font-family: "Questrial";
  font-size: 1.5rem;
  color: var(--color-text-primary);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}
.header-nav .aside-projects li a:active {
  color: var(--color-accent);
  transform: translateY(-2px);
}
.header-nav .aside-projects li a:hover {
  transform: translateY(-2px);
  color: var(--color-accent);
}

@media (max-width: 700px) {
  .logo-button {
    background: none;
    border: none;
    padding: 0;
    position: fixed;
    top: 1rem;
    right: 105%;
    z-index: 5000;
  }
  .logo-button svg path {
    fill: var(--color-text-primary);
    width: 40px;
  }
  .logo-button p {
    display: none;
  }
  .logo-button span {
    display: block;
    color: var(--color-text-primary);
  }
  .header-nav {
    width: 100vw;
    height: 100vh;
    padding: 1rem;
    align-items: flex-start;
    transform: translateX(100%);
    border-left: none;
    border-top: solid 1px var(--color-text-primary);
  }
  .header-nav.open {
    transform: translateX(0);
    width: 100vw;
    padding: 5%;
  }
  .header-nav.open a {
    width: 100%;
  }
  .header-nav.open .logo-button {
    background: none;
    border: none;
    padding: 0;
    position: fixed;
    top: 1rem;
    left: 5%;
    z-index: 5000;
  }
  .header-nav.open .logo-button svg path {
    fill: var(--color-text-primary);
    width: 40px;
  }
  .header-nav .mode-box {
    justify-content: flex-end;
    width: 100vw;
    position: relative;
  }
  .header-nav #theme-toggle img {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: -24px;
    right: 24px;
  }
  .header-nav .aside-nav li a,
  .header-nav .aside-projects li a {
    font-size: 1.5rem;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    display: block;
    width: 90vw;
  }
  .header-nav .aside-nav li a:active,
  .header-nav .aside-projects li a:active {
    color: var(--color-accent);
    font-family: "Pixelify Sans";
  }
  .header-nav .aside-nav li a:hover,
  .header-nav .aside-projects li a:hover {
    font-family: "Pixelify Sans";
    transform: translateY(-4px);
    color: var(--color-accent);
  }
  .header-nav .aside-projects {
    margin-top: 1rem;
  }
  .header-nav .aside-projects p {
    display: none;
  }
  .header-nav .aside-projects li a {
    font-size: 1.25rem;
  }
}
.header-wrapper {
  width: 100vw;
  height: auto;
}

.header-main {
  background-position-x: center;
  background-position-y: center;
  position: relative;
  margin: auto;
  height: 75vh;
  padding: 0.5rem;
  max-width: 1280px;
  text-align: left;
  color: var(--color-text-primary);
}
.header-main h1 {
  width: 100%;
  width: 100%;
  font-family: "Syne";
  font-size: 100px;
  font-weight: 700;
  border-bottom: solid 1px var(--color-text-primary);
  margin: 0;
}
@media (min-width: 50px) {
  .header-main h1 {
    width: 100%;
    text-align: left;
  }
}
.header-main h2 {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
}
.header-main p {
  padding: 0;
  margin: 0;
}
.header-main .text-wrapper-left {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}
.header-main .text-container-header {
  animation: fadeInUp 1s ease-out forwards;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 50px) {
  .header-main .text-container-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 375px) {
  .header-main .text-container-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .header-main .text-container-header {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .header-main .text-container-header {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .header-main .text-container-header {
    display: flex;
  }
}
.header-main .text-container-header p {
  max-width: 45ch;
}
.header-main .text-container-header ul {
  padding-bottom: 0.5rem;
}
.header-main .text-container-header ul li {
  text-decoration: none;
  list-style: none;
  padding-bottom: 0.5rem;
}
.header-main .text-container-header ul li p {
  margin: 4px;
}
@media (min-width: 50px) {
  .header-main .text-container-header ul li p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 375px) {
  .header-main .text-container-header ul li p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
@media (min-width: 50px) {
  .header-main {
    height: 90vh;
  }
  .header-main .text-wrapper-left {
    width: 50%;
  }
  .header-main h1 {
    font-size: 60px;
    line-height: 50px;
  }
}
@media (min-width: 375px) {
  .header-main {
    height: 90vh;
  }
  .header-main h1 {
    width: 77vw;
    font-size: 3rem;
    padding-bottom: 0.5rem;
  }
  .header-main .text-wrapper-left {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .header-main {
    height: 90vh;
  }
  .header-main h1 {
    width: 80vw;
    font-family: "Syne";
    font-size: 100px;
    line-height: 100px;
    font-weight: 700;
    border-bottom: solid 1px var(--color-text-primary);
    margin: 0;
  }
  .header-main .text-container-header {
    justify-content: space-between;
  }
  .header-main .text-wrapper-left {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .header-main h1 {
    width: 100%;
    width: 100%;
    font-family: "Syne";
    font-size: 100px;
    line-height: 100px;
    font-weight: 700;
    border-bottom: solid 1px var(--color-text-primary);
    margin: 0;
  }
}

.introduction {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: auto;
}
.introduction img {
  width: 60%;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.introduction .intro-text-wrapper {
  padding: 0 5%;
  text-align: center;
}
.introduction .intro-text-wrapper h2 {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
}
.introduction .intro-text-wrapper p {
  width: 100%;
  max-width: 60ch;
  margin: 0.5rem auto;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.introduction.visible img {
  border: 1px solid var(--color-text-primary);
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.introduction.visible .intro-text-wrapper p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.introduction.visible a {
  color: var(--color-text-primary);
  font-family: "Questrial";
}
.introduction.visible a:hover {
  color: var(--color-accent);
}
@media (min-width: 375px) {
  .introduction {
    padding: 10%;
  }
  .introduction .intro-text-wrapper {
    padding: 0 10%;
  }
}
@media (min-width: 768px) {
  .introduction {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .introduction img {
    width: 50%;
    margin-bottom: 0;
  }
  .introduction .intro-text-wrapper {
    text-align: left;
    padding: 5%;
  }
  .introduction .intro-text-wrapper p {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .introduction {
    padding: 0%;
    margin-top: 4rem;
  }
  .introduction img {
    width: 40%;
  }
  .introduction .intro-text-wrapper p {
    max-width: 50ch;
  }
}
@media (min-width: 1280px) {
  .introduction img {
    width: 40%;
  }
}

.agenda {
  max-width: 1280px;
  padding: 8% 5%;
  position: relative;
  height: auto;
  /* --- Breakpoints --- */
}
.agenda h2 {
  font-family: "Syne";
  font-size: clamp(2rem, 8vw, 6.25rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
}
.agenda h3 {
  font-family: "Questrial";
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-text-primary);
}
.agenda .text-boxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.agenda .text-box-point {
  color: var(--color-text-primary);
  padding: 1rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 600px;
}
.agenda .text-box-point:nth-child(1) {
  margin-left: 0%;
}
.agenda .text-box-point:nth-child(2) {
  margin-left: 10%;
}
.agenda .text-box-point:nth-child(3) {
  margin-left: 20%;
}
.agenda .text-box-point:nth-child(4) {
  margin-left: 30%;
}
@media (min-width: 375px) {
  .agenda h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .agenda h2 {
    text-align: left;
    font-family: "Syne";
    line-height: 100px;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--color-text-primary);
  }
}

/* Animation visible state */
.agenda.visible .text-box-point {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.agenda.visible .text-box-point:nth-child(1) {
  transition-delay: 0.1s;
}
.agenda.visible .text-box-point:nth-child(2) {
  transition-delay: 0.3s;
}
.agenda.visible .text-box-point:nth-child(3) {
  transition-delay: 0.5s;
}
.agenda.visible .text-box-point:nth-child(4) {
  transition-delay: 0.7s;
}

.main-index {
  margin: auto;
  width: 100vw;
}

.plant-spacer {
  max-width: 1280px;
  margin: 5%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}
.plant-spacer img {
  border: 1px solid var(--color-text-primary);
  width: 40%;
}
@media (min-width: 50px) {
  .plant-spacer img {
    width: 90vw;
  }
  .plant-spacer img img {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .plant-spacer img {
    width: 35vw;
  }
  .plant-spacer img img {
    width: 50%;
  }
}

.project-cards {
  max-width: 1280px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
  width: 100%;
  gap: 0.5rem;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 5%;
  padding-bottom: 5%;
}
.project-cards .card {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border: solid 1px var(--color-text-primary);
  color: inherit;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transform: 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}
.project-cards .card:hover .arrow-icon {
  transform: translateX(3px);
  color: var(--color-accent);
}
.project-cards .card:hover .arrow-icon h2 {
  font-family: "Pixelify Sans";
}
.project-cards .card .card-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
  border-bottom: solid 1px var(--color-text-primary);
}
.project-cards .card:hover .card-gif {
  opacity: 1;
}
.project-cards .card:hover::before {
  opacity: 1;
}
.project-cards .card .card-text {
  min-height: 15%;
  max-height: 20%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
.project-cards .card .card-text h2 {
  border-bottom: solid 1px var(--color-text-primary);
  font-family: "Questrial";
  width: 100%;
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-content: space-evenly;
}
.project-cards .card .card-text p {
  margin-top: 0.5rem;
}
.project-cards .card .arrow-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
  margin: 1rem;
  transition: transform 0.3s ease;
}
.project-cards .card .arrow-icon h2 {
  font-size: 1.4rem;
  font-family: "Questrial";
}
@media (min-width: 375px) {
  .project-cards .card {
    width: 100%;
    height: 80vh;
  }
  .project-cards .card .card-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
  }
  .project-cards h2 {
    font-family: "Syne";
    font-size: 1rem;
  }
  .project-cards p {
    font-size: 18px;
  }
}
@media (min-width: 600px) {
  .project-cards .card {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 768px) {
  .project-cards .card {
    height: 90vh;
    width: calc(33.3333% - 0.5rem);
  }
  .project-cards h2 {
    font-family: "Syne";
    font-size: 1.5rem;
  }
  .project-cards p {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .project-cards .card {
    height: 90vh;
    width: calc(20% - 0.5rem);
  }
  .project-cards p {
    font-size: 18px;
  }
  .project-cards h2 {
    font-family: "Syne";
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .project-cards .card {
    width: calc(20% - 0.5rem);
  }
  .project-cards h2 {
    font-size: 2rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .project-cards .card .card-gif {
    opacity: 1;
  }
  .project-cards .card .arrow-icon {
    transform: translateX(3px);
    color: var(--color-accent);
  }
}
.qualifications h2 {
  padding-bottom: 0.5rem;
}

.skills-banderoll {
  border-bottom: solid 1px var(--color-text-primary);
  border-top: solid 1px var(--color-text-primary);
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.skills-track {
  display: flex;
  gap: 4rem;
  animation: scroll-left 20s linear infinite;
  width: -moz-max-content;
  width: max-content;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  padding: 0 2rem;
  font-family: "Syne";
  font-size: 1.2rem;
  white-space: nowrap;
}

.skills-banderoll svg path {
  fill: currentColor !important;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
body[data-theme=dark] .skills-banderoll {
  background-color: var(--color-surface-primary);
  color: var(--color-text);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.texter-citat {
  margin: 5%;
  color: var(--color-text-primary);
  position: relative;
}
.texter-citat h2 {
  font-family: "Syne";
  font-size: clamp(2rem, 8vw, 6.25rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
  text-align: center;
}
.texter-citat h3 {
  font-family: "Syne";
  width: 45ch;
  margin: 1rem;
}
.texter-citat img {
  border: none;
  position: relative;
  display: block;
  width: 80%;
  height: auto;
  margin: 2rem auto;
}
.texter-citat img {
  animation: float 4s ease-in-out infinite;
}
.texter-citat .citat-wrapper {
  max-width: 100vw;
  font-style: italic;
  position: relative;
}
.texter-citat .fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}
@media (min-width: 375px) {
  .texter-citat {
    margin-top: 5rem;
    height: 60vh;
  }
  .texter-citat h2 {
    text-align: center;
    width: 80vw;
    margin: 0;
  }
  .texter-citat h3 {
    text-align: center;
    width: 80vw;
  }
  .texter-citat img {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .texter-citat {
    padding: 3rem 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    height: auto;
  }
  .texter-citat h2 {
    text-align: left;
  }
  .texter-citat h3 {
    text-align: left;
  }
  .texter-citat img {
    width: 30%;
  }
}
@media (min-width: 1024px) {
  .texter-citat {
    margin: 10%;
    padding: 6rem;
  }
  .texter-citat h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  .texter-citat h3 {
    width: 40ch;
  }
  .texter-citat img {
    position: absolute;
    top: 20%;
    right: 0%;
    width: 30%;
    margin: 0;
  }
  .texter-citat .citat-wrapper {
    max-width: 45ch;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.tack {
  padding: 5rem;
  margin: auto;
  margin-bottom: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tack h2 {
  text-align: center;
  font-family: "Syne";
  font-size: clamp(2rem, 8vw, 6.25rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
}
.tack a {
  animation: fadeInUp 3s ease-out forwards;
  font-family: "Questrial";
  text-decoration: none;
  color: var(--color-text-primary);
  width: auto;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
}
.tack a:hover {
  font-family: "Pixelify Sans";
  color: var(--color-accent);
}

.footer {
  position: relative;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--color-text-primary);
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 4rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}

.footer-left {
  display: flex;
  align-items: center;
}
.footer-left svg {
  width: 24px;
  height: 24px;
  margin-left: 0;
}

.footer-right {
  display: flex;
  align-items: center;
}
.footer-right ul {
  display: flex;
  text-decoration: none;
  list-style: none;
}
.footer-right ul svg {
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  color: var(--color-text-primary);
}

@media (min-width: 50px) {
  .footer {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer {
    display: flex;
  }
}
.scroll-to-top {
  font-family: "Questrial";
  font-weight: 600;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--color-text-primary);
  color: var(--color-surface-primary);
  font-size: 1rem;
  border: none;
  z-index: 1000;
  display: none;
  transition: opacity 0.3s ease;
}
.scroll-to-top:hover {
  background-color: var(--color-accent);
  color: var(--color-surface-primary);
}
@media (min-width: 1024px) {
  .scroll-to-top {
    display: block;
    opacity: 0;
    pointer-events: none;
  }
}

.projekt-header {
  margin: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  width: 100vw;
  height: auto;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem;
  max-width: 1280px;
  text-align: left;
}
.projekt-header h1 {
  font-family: "Syne";
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
}
.projekt-header .text-container-header {
  margin-top: 2rem;
}
.projekt-header .text-container-header p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 55ch;
}
.projekt-header .text-container-header ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.projekt-header .text-container-header li {
  max-width: -moz-fit-content;
  max-width: fit-content;
  list-style: none;
}
.projekt-header .text-container-header li p {
  width: auto;
}
.projekt-header .text-container-header li a {
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-decoration: none;
  color: var(--color-text-primary);
}
@media (min-width: 375px) {
  .projekt-header .text-container-header p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    width: 90vw;
  }
}
@media (min-width: 768px) {
  .projekt-header .text-container-header p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    width: 55ch;
  }
}

.projects {
  margin: auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 100vw;
}

.projekt-header .text-container-header li a:hover {
  color: var(--color-accent);
  background-color: transparent;
  text-decoration: none;
  font-family: "Questrial";
  transition: all 0.3s ease;
  text-align: left;
}
.projekt-header .text-container-header li a:hover p {
  transition: all 0.3s ease;
  padding-left: 1rem;
}

#airforestry {
  max-width: 1280px;
  width: 100%;
  margin: 0;
  background-color: var(--color-surface-primary);
}
#airforestry .header-airforesty {
  margin: 0;
  padding: 0.5rem;
  text-align: left;
}
#airforestry .header-airforesty h2 {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
  width: 100%;
}
#airforestry .header-airforesty h4 {
  width: 100%;
}
#airforestry .intro-airforestry {
  background-color: var(--color-surface-primary);
  display: flex;
  padding: 0.5rem;
}
#airforestry .intro-airforestry p {
  width: 45ch;
}
@media (min-width: 50px) {
  #airforestry .intro-airforestry {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 480px) {
  #airforestry .intro-airforestry {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  #airforestry .intro-airforestry {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  #airforestry .intro-airforestry {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  #airforestry .intro-airforestry {
    display: flex;
    flex-wrap: nowrap;
  }
}
#airforestry .outro-airforestry {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem;
  width: 90%;
}
#airforestry .outro-airforestry h3 {
  width: 100%;
  font-size: 1.5rem;
}
#airforestry .outro-airforestry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
#airforestry .outro-airforestry ul li {
  display: flex;
}
#airforestry .outro-airforestry ul li a {
  display: inline-block;
  text-decoration: none;
  background-color: var(--color-text-primary);
  color: var(--color-surface-primary);
  font-weight: 500;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#airforestry .outro-airforestry ul li a:hover {
  background-color: var(--color-surface-primary);
  color: var(--color-text-primary);
  padding: 0.8rem 2rem;
}
@media (min-width: 768px) {
  #airforestry .outro-airforestry {
    width: 80%;
  }
  #airforestry .outro-airforestry ul li a {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  #airforestry .outro-airforestry ul li a {
    font-size: 1.25rem;
  }
}

#fromma {
  max-width: 1280px;
  width: 100%;
  background-color: var(--color-surface-primary);
}
#fromma .header-fromma {
  margin: 0;
  padding: 0.5rem;
  text-align: left;
}
#fromma .header-fromma h2 {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
  width: 100%;
}
#fromma .header-fromma h4 {
  width: 100%;
}
#fromma .intro-fromma {
  background-color: var(--color-surface-primary);
  display: flex;
  padding: 0.5rem;
}
#fromma .intro-fromma p {
  width: 45ch;
}
@media (min-width: 50px) {
  #fromma .intro-fromma {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 480px) {
  #fromma .intro-fromma {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  #fromma .intro-fromma {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  #fromma .intro-fromma {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  #fromma .intro-fromma {
    display: flex;
    flex-wrap: nowrap;
  }
}
#fromma .segment-1-fromma img {
  width: 100%;
  height: auto;
}

#insektspojken {
  max-width: 1280px;
  width: 100%;
}
#insektspojken .header-insektspojken {
  background-color: var(--color-surface-primary);
  margin: 0;
  padding: 0.5rem;
  text-align: left;
}
#insektspojken .header-insektspojken h2 {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
  width: 100%;
}
#insektspojken .header-insektspojken h4 {
  width: 100%;
}
#insektspojken .intro-insektspojken {
  background-color: var(--color-surface-primary);
  display: flex;
  padding: 0.5rem;
}
#insektspojken .intro-insektspojken p {
  width: 45ch;
}
@media (min-width: 50px) {
  #insektspojken .intro-insektspojken {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 480px) {
  #insektspojken .intro-insektspojken {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  #insektspojken .intro-insektspojken {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  #insektspojken .intro-insektspojken {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  #insektspojken .intro-insektspojken {
    display: flex;
    flex-wrap: nowrap;
  }
}
#insektspojken .segment-1-insektspojken img {
  width: 100%;
  height: auto;
  display: block;
}

#ocd-centret {
  max-width: 1280px;
  width: 100%;
  background-color: var(--color-surface-primary);
}
#ocd-centret .header-ocd-centret {
  padding: 0.5rem;
}
#ocd-centret .header-ocd-centret h2 {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
  width: 100%;
}
#ocd-centret .intro-ocd-centret {
  display: flex;
  padding: 0.5rem;
}
#ocd-centret .intro-ocd-centret p {
  width: 45ch;
}
@media (min-width: 50px) {
  #ocd-centret .intro-ocd-centret {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 480px) {
  #ocd-centret .intro-ocd-centret {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  #ocd-centret .intro-ocd-centret {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  #ocd-centret .intro-ocd-centret {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  #ocd-centret .intro-ocd-centret {
    display: flex;
    flex-wrap: nowrap;
  }
}
#ocd-centret .segment-1-ocd-centret img {
  width: 100%;
  display: block;
}
#ocd-centret .segment-2-ocd-centret img {
  width: 70%;
  display: block;
}

#typografi {
  max-width: 1280px;
  width: 100%;
  height: auto;
  background-color: var(--color-surface-primary);
}
#typografi .header-typografi {
  margin: 0;
  padding: 0.5rem;
  text-align: left;
}
#typografi .header-typografi h2 {
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
  width: 100%;
}
#typografi .header-typografi h4 {
  width: 100%;
}
#typografi .intro-typografi {
  background-color: var(--color-surface-primary);
  display: flex;
  padding: 0.5rem;
}
#typografi .intro-typografi p {
  width: 45ch;
}
@media (min-width: 50px) {
  #typografi .intro-typografi {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 480px) {
  #typografi .intro-typografi {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  #typografi .intro-typografi {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  #typografi .intro-typografi {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  #typografi .intro-typografi {
    display: flex;
    flex-wrap: nowrap;
  }
}

html {
  scroll-behavior: smooth;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.cv-header {
  max-width: 1280px;
  display: flex;
  margin: auto;
  margin-top: 4rem;
  margin-bottom: 2rem;
  width: 80%;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 50px) {
  .cv-header {
    justify-content: center;
    width: 80%;
    flex-wrap: wrap;
  }
}
@media (min-width: 375px) {
  .cv-header {
    justify-content: center;
    width: 80%;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .cv-header {
    width: 80%;
  }
}
.cv-header h2 {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}
.cv-header .title {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 1rem);
}
@media (min-width: 50px) {
  .cv-header .title {
    width: 100%;
    margin-right: 0rem;
  }
}
@media (min-width: 375px) {
  .cv-header .title {
    width: 100%;
    margin-right: 0rem;
  }
}
@media (min-width: 768px) {
  .cv-header .title {
    width: calc(50% - 1rem);
  }
}
.cv-header .conclusion {
  padding: 2rem;
  width: calc(50% - 1rem);
}
.cv-header .conclusion p {
  margin-top: 1rem;
}
@media (min-width: 50px) {
  .cv-header .conclusion {
    width: 100%;
    margin-left: 0rem;
  }
}
@media (min-width: 375px) {
  .cv-header .conclusion {
    width: 100%;
    margin-left: 0rem;
  }
}
@media (min-width: 768px) {
  .cv-header .conclusion {
    width: calc(50% - 1rem);
  }
}
.cv-header h3 {
  font-family: "Quattrocento";
  margin-top: 0.5rem;
}

.cv-main {
  max-width: 1280px;
  margin: auto;
  width: 80%;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 4rem;
}
.cv-main h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.cv-main h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 700;
  font-family: "Questrial";
}
.cv-main h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.cv-main p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cv-main .text-container {
  border-top: solid 2px var(--color-text-primary);
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cv-main .education {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 1rem);
  padding: 0.75rem;
}
@media (min-width: 50px) {
  .cv-main .education {
    width: 100%;
  }
}
@media (min-width: 375px) {
  .cv-main .education {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cv-main .education {
    width: calc(50% - 1rem);
  }
}
.cv-main .worklife {
  width: calc(50% - 1rem);
  padding: 0.75rem;
}
@media (min-width: 50px) {
  .cv-main .worklife {
    width: 100%;
  }
}
@media (min-width: 375px) {
  .cv-main .worklife {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cv-main .worklife {
    width: calc(50% - 1rem);
  }
}
.cv-main .referenser {
  width: calc(50% - 1rem);
  padding: 0.75rem;
}
.cv-main .referenser h3 {
  margin-top: 0rem;
}
@media (min-width: 50px) {
  .cv-main .referenser {
    width: 100%;
  }
}
@media (min-width: 375px) {
  .cv-main .referenser {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cv-main .referenser {
    width: calc(50% - 1rem);
  }
}
.cv-main .program {
  width: calc(50% - 1rem);
  padding: 0.75rem;
}
.cv-main .program .text-container {
  border-top: solid 2px var(--color-text-primary);
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.cv-main .program .text-container h3 {
  margin: 0;
  font-family: "Questrial";
}
.cv-main .program svg {
  height: 32px;
  width: 32px;
  margin: 0.5rem;
}
@media (min-width: 50px) {
  .cv-main .program {
    width: 100%;
  }
}
@media (min-width: 375px) {
  .cv-main .program {
    width: 100%;
    margin-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .cv-main .program {
    width: calc(50% - 1rem);
    margin-bottom: 0rem;
  }
}

.contact {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 2rem;
  margin: auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 100vw;
}
@media (min-width: 50px) {
  .contact {
    flex-wrap: wrap;
  }
}
@media (min-width: 375px) {
  .contact {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .contact {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .contact {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1280px) {
  .contact {
    flex-wrap: nowrap;
  }
}

.contact-header {
  margin: auto;
  width: 100vw;
  max-width: 1280px;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
}
.contact-header h1 {
  margin-bottom: 2rem;
  color: var(--color-text-primary);
  width: 100%;
  font-family: "Syne";
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  padding: 0.5rem;
}
@media (min-width: 50px) {
  .contact-header h1 {
    width: 100%;
    text-align: left;
  }
}
.contact-header ul li {
  animation: fadeInUp 1s ease-out forwards;
  list-style: none;
}

main.contact {
  max-width: 1280px;
}

.information-kontakt {
  width: 60%;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
}
.information-kontakt h2 {
  animation: fadeInUp 0.5s ease-out forwards;
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
}
.information-kontakt p {
  max-width: 45ch;
  animation: fadeInUp 1s ease-out forwards;
}
@media (min-width: 50px) {
  .information-kontakt p {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 375px) {
  .information-kontakt p {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 50px) {
  .information-kontakt {
    width: 100%;
  }
}
@media (min-width: 375px) {
  .information-kontakt {
    width: 100%;
  }
}
.information-kontakt .contact-links {
  max-width: 200px;
  width: 80%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.information-kontakt .contact-links li {
  width: 100%;
  display: flex;
  margin-bottom: 0.5rem;
}
.information-kontakt .contact-links li a {
  animation: fadeInUp 3s ease-out forwards;
  font-family: "Questrial";
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: var(--color-text-primary);
  width: 100%;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
  text-align: left;
  margin: 0;
  line-height: 2rem;
  font-size: 2rem;
  margin-top: 0.5rem;
}
.information-kontakt .contact-links li a:active {
  font-family: "Pixelify Sans";
  color: var(--color-accent);
}
.information-kontakt .contact-links li a:hover {
  font-family: "Pixelify Sans";
  color: var(--color-accent);
  padding: 0.8rem 2.5rem;
}

h2 {
  width: 100%;
}

.nav-logo svg {
  fill: currentColor;
}

.nav-logo svg path {
  fill: currentColor;
}

.footer svg path {
  fill: currentColor;
}

.program svg path {
  fill: currentColor;
}

.card svg path {
  fill: currentColor;
}

.wrapper {
  padding: 4rem;
  max-width: 500px;
}
.wrapper a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--color-text-primary, #333);
  color: white;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */