html {
  --hello-bg-start: #080808;
  --hello-bg-end: #34354d;
  --page-bg-start: #1d1d1d;
  --page-bg-end: #202021;
  --text-color: #f1f1f1;
  --accent-color: #8c7ae6;
  --toggle-bg: rgba(255, 255, 255, 0.08);
  --toggle-fg: #f1f1f1;
  color-scheme: dark;
}
html[data-theme="light"] {
  --hello-bg-start: #ffffff;
  --hello-bg-end: #575c6b;
  --page-bg-start: #dfe1e8;
  --page-bg-end: #cbccd6;
  --text-color: #1a1a1a;
  --accent-color: #6c4fd6;
  --toggle-bg: rgba(0, 0, 0, 0.06);
  --toggle-fg: #1a1a1a;
  color-scheme: light;
}
body,
html {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif !important;
  transition: background-color 0.2s ease-in-out;
}
#content {
  height: 100%;
  min-height: 100vh;
  min-width: 320px;
  display: block;
}
#content,
#hello {
  position: relative;
}
#hello {
  height: 100vh;
  z-index: 1;
  background: linear-gradient(146deg, var(--hello-bg-start), var(--hello-bg-end));
  transition: background 0.2s ease-in-out;
}
#hello .header {
  width: 100%;
}
#hello .header .logo {
  height: 128px;
  margin: 0;
}
#hello .header .logo-dark {
  display: block;
}
#hello .header .logo-light {
  display: none;
}
html[data-theme="light"] #hello .header .logo-dark {
  display: none;
}
html[data-theme="light"] #hello .header .logo-light {
  display: block;
}
#hello .header .name {
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
#hello .centered-headline {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
}
#hello .centered-headline .headline {
  font-size: 2.5rem;
  font-weight: 200;
  margin: 0 0 0.5rem;
  line-height: 2.5rem;
}
#hello .centered-headline .headline-description {
  font-size: 1.5rem;
  font-weight: 100;
  margin: 1rem 0 0;
  width: 50%;
}
#hello .centered-headline .words-wrapper {
  position: relative;
  font-size: 4.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 4.5rem;
  height: 5rem;
  display: inline-block;
}
#hello .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#hello .footer .copyright-tag {
  color: var(--text-color);
  font-weight: 100;
  margin: 0;
  line-height: 0;
}
#page {
  position: relative;
  height: 100vh;
  z-index: 1;
  background: linear-gradient(146deg, var(--page-bg-start), var(--page-bg-end));
  transition: background 0.2s ease-in-out;
}
#page .centered-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#page .centered-content .title {
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2vh;
}
#page .centered-content .description {
  color: var(--text-color);
  font-weight: 100 !important;
  font-size: 1.2rem;
}
#page .centered-content .description a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.15s ease-in-out;
}
#page .centered-content .description a:hover {
  color: var(--accent-color);
}
#page .social-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#page .social-footer .item svg {
  fill: var(--text-color);
  height: 2rem;
  width: 2rem;
  transition: fill 0.15s ease-in-out;
}
#page .social-footer .item :hover {
  fill: var(--accent-color);
}
.full-height {
  position: static;
  height: auto;
}

/* Theme toggle button */
#theme-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: var(--toggle-bg);
  color: var(--toggle-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease-in-out, transform 0.15s ease-in-out;
}
#theme-toggle:hover {
  transform: scale(1.08);
}
#theme-toggle svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: var(--toggle-fg);
}
#theme-toggle .icon-sun {
  display: none;
}
#theme-toggle .icon-moon {
  display: block;
}
html[data-theme="light"] #theme-toggle .icon-sun {
  display: block;
}
html[data-theme="light"] #theme-toggle .icon-moon {
  display: none;
}
@media screen and (max-width: 768px) {
  #theme-toggle {
    top: 0.75rem;
    right: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  #hello {
    height: 100%;
    min-height: 100vh;
  }
  #hello .centered-headline {
    position: relative;
    top: 0;
    transform: none;
    padding: 0 5vw !important;
    height: 100%;
  }
  #hello .centered-headline .words-wrapper {
    font-size: 13vw;
    line-height: 13vw;
    position: relative;
    height: 8.5rem;
    display: block;
  }
  #hello .centered-headline .headline-description {
    font-size: 1.5rem;
    width: 90vw;
  }
  #hello .header .name {
    justify-content: flex-start !important;
  }
  #hello .words-wrapper:after {
    display: none !important;
  }
}
@media screen and (max-height: 700px) {
  #hello .footer {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15vw 5vw !important;
  }
}
/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.15),
    hsla(0, 0%, 100%, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: 0.75rem;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: 0.75rem;
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
*,
:after,
:before {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, sans-serif, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans",
    "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  font-family: var(--bs-body-font-family);
  font-size: 1rem;
  font-size: var(--bs-body-font-size);
  font-weight: 400;
  font-weight: var(--bs-body-font-weight);
  line-height: 1.5;
  line-height: var(--bs-body-line-height);
  color: #212529;
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: #fff;
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
b,
strong {
  font-weight: bolder;
}
a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}
img,
svg {
  vertical-align: middle;
}
.m-0 {
  margin: 0 !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
