:root {
  --background-color-dark: rgb(0, 0, 0);
  --background-color: rgba(4, 4, 4, 1);
  --tint-color: rgb(17, 17, 17);
  --hover-color: #969696;
  --hover-color-alt: #3c3c3c;
  --text-color: #ffffff;
  --text-color-alt: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.15);
  --border-color-alt: #555555;
  --border-color-blue: #475F7B;
  --primary-blue: #4b95ea;
  --primary-blue-light: #a9cef9;
  --primary-blue-tint: #05111f;
  --primary-green: #3cd870;
  --primary-green-light: #a9f9c9;
  --red: #ff6f6f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

a,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zalando Sans", sans-serif;
  background-color: var(--background-color-dark);
  color: var(--text-color);
}

#body-wrapper {
  margin-top: 77px;
}

.content {
  padding: 60px 20px;
  max-width: 430px;
  margin: auto;
  width: 100%;
}

p {
  color: var(--text-color-alt);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 12px;
  max-width: 1200px;
}

h1 {
  font-size: 28px;
}

h2 {
  max-width: 950px;
}

h1,
h2,
h3 {
  margin-bottom: 18px;
  font-weight: 500;
}

.panel-blue-pixel {
  position: relative;
  background: radial-gradient(circle at 105% 105%, rgb(255, 255, 255) 0%, rgb(0, 94, 255) 30%, rgb(4, 4, 4) 70%);
  height: 550px;
  z-index: 0;
  box-shadow: 0 0 0 1px #262626;
}
.panel-blue-pixel::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
  background-image: url("/images/dither-blue.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -2;
  pointer-events: none;
}
@media (min-width: 700px) {
  .panel-blue-pixel {
    overflow: hidden;
    height: 700px;
    background: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.9) 0%, rgb(0, 94, 255) 30%, rgb(4, 4, 4) 70%);
  }
  .panel-blue-pixel::before {
    background-image: url("/images/dither-blue-large.svg");
    background-size: auto 100%;
    background-position: bottom right;
  }
}
@media (min-width: 1200px) {
  .panel-blue-pixel {
    overflow: hidden;
    height: 425px;
    background: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.9) 0%, rgb(0, 94, 255) 30%, rgb(4, 4, 4) 70%);
  }
  .panel-blue-pixel::before {
    background-image: url("/images/dither-blue-horizontal.svg");
    background-size: auto 100%;
    background-position: bottom right;
  }
}

.panel-green-pixel {
  position: relative;
  background: radial-gradient(circle at 105% 105%, rgb(255, 255, 255) 0%, rgb(0, 165, 66) 30%, rgb(4, 4, 4) 70%);
  background-size: cover;
  background-position: bottom;
  box-shadow: 0 0 0 1px #262626;
  height: 550px;
}
.panel-green-pixel::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
  background-image: url("/images/dither-green.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 700px) {
  .panel-green-pixel {
    overflow: hidden;
    height: 700px;
    background: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.9) 0%, rgb(0, 165, 66) 25%, rgb(4, 4, 4) 70%);
  }
  .panel-green-pixel::before {
    background-image: url("/images/dither-green-large.svg");
    background-size: auto 100%;
    background-position: bottom right;
  }
}
@media (min-width: 1200px) {
  .panel-green-pixel {
    height: 425px;
    background: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.9) 0%, rgb(0, 165, 66) 25%, rgb(4, 4, 4) 70%);
  }
  .panel-green-pixel::before {
    background-image: url("/images/dither-green-horizontal.svg");
    background-size: auto 100%;
    background-position: bottom right;
  }
}

.panel-blue {
  background: radial-gradient(circle at 50% 150%, #033488 0%, #080808 100%);
  box-shadow: inset 0 0 0 1px var(--border-color);
  border-radius: 16px;
}

.panel-grey {
  background: var(--tint-color);
  box-shadow: 0 0 0 1px var(--border-color);
  border-radius: 16px;
}

.button {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease;
}
.button i {
  position: relative;
  top: 1px;
  margin-left: 6px;
}
.button:hover {
  transform: translateY(-2px);
}
.button.blue {
  background: linear-gradient(0deg, var(--text-color) 0%, var(--text-color-alt) 100%);
  color: var(--background-color);
}
.button.blue::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: -1;
}
.button.blue:hover {
  background-color: transparent;
  color: var(--background-color);
  transform: translateY(-2px);
}
.button.blue:hover::before {
  opacity: 1;
}
.button.green {
  background: linear-gradient(0deg, var(--text-color) 0%, var(--text-color-alt) 100%);
  color: var(--background-color);
}
.button.green::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: -1;
}
.button.green:hover {
  background-color: transparent;
  color: var(--background-color);
  transform: translateY(-2px);
}
.button.green:hover::before {
  opacity: 1;
}
.button.grey {
  background: linear-gradient(0deg, var(--border-color-alt) 0%, var(--border-color) 100%);
  color: var(--text-color);
}
.button.grey::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, var(--border-color) 0%, var(--border-color-alt) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: -1;
}
.button.grey:hover {
  transform: translateY(-2px);
}
.button.grey:hover::before {
  opacity: 1;
}

.sub-header {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 18px;
  color: var(--text-color-alt);
  font-family: "Chivo Mono", monospace;
}
.sub-header.blue {
  color: var(--primary-blue);
}
.sub-header.green {
  color: var(--primary-green);
}

.skills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.skills span {
  color: var(--text-color-alt);
  font-family: "Chivo Mono", monospace;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 21px;
  border: 1px solid var(--border-color-alt);
  transition: border-color 250ms ease;
}

.main-text {
  margin-bottom: 50px;
}

.large-image {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.large-image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.gap-small {
  gap: 32px;
}

.gap-medium {
  gap: 50px;
}

.gap-large {
  gap: 100px;
}

.image-container {
  width: 100%;
  background-color: var(--tint-color);
  padding: 20px 20px 0;
  border-radius: 24px;
  margin-bottom: 50px;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.image-section {
  display: flex;
  flex-direction: column;
}
.image-section .image-grid {
  display: grid;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 40px;
}
.image-section .image-grid.double-column {
  grid-template-columns: 1fr;
}
.image-section .image-grid.triple-column {
  grid-template-columns: 1fr;
}
.image-section .image-grid .item {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.image-section .image-grid .image {
  width: 100%;
}
.image-section .image-grid .image img {
  display: block;
  width: 100%;
  height: auto;
  border-top-left-radius: 12px;
}
.image-section .image-grid .text {
  padding: 24px;
}

.project-header h1 {
  margin-bottom: 0;
}
.project-header .skills {
  margin-top: 24px;
}
.project-header .button-container {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.project-header img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media (min-width: 700px) {
  .content {
    padding: 60px 20px;
    max-width: 700px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .content {
    max-width: 1200px;
    padding: 90px 40px;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 42px;
  }
  h2 {
    font-size: 32px;
  }
  .image-section .image-grid {
    display: grid;
    gap: 32px;
  }
  .image-section .image-grid.single-column {
    grid-template-columns: 1fr;
  }
  .image-section .image-grid.double-column {
    grid-template-columns: 1fr 1fr;
  }
  .image-section .image-grid.triple-column {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .image-section .image-grid .text {
    padding: 40px;
  }
  .large-image {
    padding: 60px 60px 0;
    border-radius: 24px;
  }
  .large-image img {
    border-radius: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .project-header {
    display: flex;
  }
  .project-header img {
    border-radius: 24px;
  }
  .project-header h1 {
    margin-bottom: 0;
  }
  .project-header .skills {
    margin-top: 24px;
  }
  .project-header .button-container {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}/*# sourceMappingURL=general.css.map */