/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   enhanced by Fogel (fogelman.pl)
*/
/* stylelint-disable */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a,
a:visited,
a:hover {
  color: inherit;
}

mark {
  background-color: transparent;
  color: inherit;
}


:root {
  --animation-duration: .3s;
}
@media (prefers-reduced-motion) {
  :root {
    --animation-duration: 0s;
  }
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  background: var(--color-background);
  background: linear-gradient(90deg, rgb(228, 0, 165.9333333333), rgb(59.4, 0, 153));
  color: var(--color-foreground);
}
body .bg-container {
  --gradientee-color-from: rgb(228, 0, 165.9333333333);
  --gradientee-color-to: rgb(59.4, 0, 153);
  --gradientee-box-size: 60;
  --gradientee-seed: 3200;
  --gradientee-deflection-level: 20;
  --gradientee-color-randomness: 0;
  --gradientee-color-offset: 0.2;
  z-index: -2;
  background-image: paint(gradientee);
}
@media screen and (max-width: 1000px) {
  body .bg-container {
    --gradientee-box-size: 40;
    --gradientee-color-offset: 0.3;
  }
}
@media screen and (max-width: 700px) {
  body .bg-container {
    --gradientee-box-size: 30;
    --gradientee-color-offset: 0.4;
  }
}
@media screen and (max-width: 512px) {
  body .bg-container {
    --gradientee-color-offset: 0.5;
  }
}
body .bg-container,
body .bg-container > canvas {
  position: fixed;
  width: 100vw;
  height: 100vh;
  filter: blur(5px);
}
@media screen and (max-width: 1000px) {
  body .bg-container,
  body .bg-container > canvas {
    filter: blur(4px);
  }
}
@media screen and (max-width: 700px) {
  body .bg-container,
  body .bg-container > canvas {
    filter: blur(3px);
  }
}
@media screen and (max-width: 512px) {
  body .bg-container,
  body .bg-container > canvas {
    filter: blur(2px);
  }
}
body .bg-container > canvas {
  z-index: -1;
}
@supports (background: paint(id)) {
  body .bg-container > canvas {
    display: none;
  }
}

body {
  --color-primary: #ff4bce;
  --color-secondary: #6300ff;
  --color-primary-background: rgb(228, 0, 165.9333333333);
  --color-secondary-background: rgb(59.4, 0, 153);
  --color-primary-button: rgb(177, 0, 128.8166666667);
  --color-background-dialog: #0009;
  --color-foreground-dialog: #f8f8f2;
  --color-background: #f8f8f2;
  --color-foreground: #282a36;
  --color-primary-background-light: rgb(228, 38.25, 176.3458333333);
  --color-middle: color.mix($color-primary, $color-secondary, 40%);
  --color-primary-text: #6300ff;
  --color-border-light: #6300ff;
  --color-background-smoke: #fffc;
  --color-background-light-smoke: #fff9;
  --color-background-white: #fff4;
  --color-background-white-hover: #fff9;
  --color-box-background: #fff;
  --color-shadow: #000;
}
@media (prefers-color-scheme: dark) {
  body {
    --color-background: #282a36;
    --color-foreground: #f8f8f2;
    --color-primary-background-light: color.adjust(
      $color-primary-background,
      $whiteness: 15%
    );
    --color-middle: color.mix($color-primary, $color-secondary, 40%);
    --color-primary-text: #a8ff60;
    --color-border-light: #ff8ade;
    --color-background-smoke: #000c;
    --color-background-light-smoke: #0009;
    --color-background-white: #fff4;
    --color-background-white-hover: #fff9;
    --color-box-background: #000;
    --color-shadow: #000;
  }
}
body.dark {
  --color-background: #282a36;
  --color-foreground: #f8f8f2;
  --color-primary-background-light: color.adjust(
    $color-primary-background,
    $whiteness: 15%
  );
  --color-middle: color.mix($color-primary, $color-secondary, 40%);
  --color-primary-text: #a8ff60;
  --color-border-light: #ff8ade;
  --color-background-smoke: #000c;
  --color-background-light-smoke: #0009;
  --color-background-white: #fff4;
  --color-background-white-hover: #fff9;
  --color-box-background: #000;
  --color-shadow: #000;
}
body.light {
  --color-background: #f8f8f2;
  --color-foreground: #282a36;
  --color-primary-background-light: rgb(228, 38.25, 176.3458333333);
  --color-middle: color.mix($color-primary, $color-secondary, 40%);
  --color-primary-text: #6300ff;
  --color-border-light: #6300ff;
  --color-background-smoke: #fffc;
  --color-background-light-smoke: #fff9;
  --color-background-white: #fff4;
  --color-background-white-hover: #fff9;
  --color-box-background: #fff;
  --color-shadow: #000;
}

:root {
  --font-header: "Palatino Linotype", "Book Antiqua", Palatino, serif, system-ui;
  font-size: 18px;
}

body,
button {
  color: var(--color-foreground);
  font-size: 1rem;
  font-family: Avernir, "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", system-ui;
  line-height: 2rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-header);
}

h1 {
  font-size: 3rem;
  line-height: 3rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3rem;
}

thead,
strong {
  font-weight: 600;
}

ol,
li {
  margin-left: 2em;
}

em {
  font-style: italic;
}

button {
  padding: 0.25rem 1.5rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
  background: var(--color-background);
  color: var(--color-foreground);
  cursor: pointer;
  transition: var(--animation-duration) ease;
}
button:hover {
  box-shadow: 0 0 0 3px var(--color-border-light) inset;
  outline: none;
}
button.primary {
  border-color: var(--color-primary-background-light);
  background: var(--color-primary-button);
  color: var(--color-foreground-dialog);
  box-shadow: none;
}
button.primary:hover {
  background: var(--color-primary-background-light);
  box-shadow: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: min(7rem, 30vw);
  padding: 0 max(50% - 512px, 25px);
  background: var(--color-background-smoke);
}
@media screen and (max-width: 600px) {
  header {
    justify-content: center;
  }
  header .socials {
    display: none;
  }
}
header span {
  display: block;
  text-align: center;
}
header h1,
header h2 {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
header .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  margin-top: 0.1rem;
  background: linear-gradient(90deg, #ff4bce, #6300ff);
  filter: brightness(1.3);
  transform: skewX(-45deg);
}
header .subtitle {
  font-size: 0.5em;
  line-height: 1em;
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
  height: 100%;
}
.socials .strava > svg,
.socials .instagram > svg {
  fill: var(--color-foreground);
}
.socials .strava,
.socials .instagram,
.socials .avatar,
.socials .avatar > img {
  width: 2.25em;
  height: 2.25em;
}
.socials .language-switch {
  text-transform: uppercase;
  font-family: var(--font-header);
  font-size: 1.25rem;
}
.socials .language-switch,
.socials .strava,
.socials .instagram,
.socials .avatar,
.socials .switch-container {
  transition: 0.3s transform ease;
}
.socials .language-switch:hover,
.socials .strava:hover,
.socials .instagram:hover,
.socials .avatar:hover,
.socials .switch-container:hover {
  transform: scale(1.25);
}
.socials .avatar > img {
  border-radius: 50%;
}

article-box {
  display: grid;
}
article-box article {
  z-index: 5;
  grid-row: 1;
  grid-column: 1;
  overflow: hidden;
}
article-box .box {
  position: relative;
  z-index: 2;
  grid-row: 1;
  grid-column: 1;
  border-radius: 18px;
  background: linear-gradient(90deg, #6300ff, #ff4bce);
  box-shadow: 3px 3px 15px 3px var(--color-shadow);
  opacity: 0.8;
}
article-box .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--color-box-background);
  transition: var(--animation-duration) ease;
}
@media screen and (min-width: 650px) {
  article-box[animate]:hover .box::before {
    top: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}

a:focus-visible .box.animate::before,
a:focus .box.animate::before {
  top: 0.5rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
}

nav.main,
main,
.cookie-banner .content,
footer {
  --width: 1200px;
  --margin: 3rem;
}
@media screen and (max-width: 700px) {
  nav.main,
  main,
  .cookie-banner .content,
  footer {
    --margin: 2rem;
  }
}
@media screen and (max-width: 512px) {
  nav.main,
  main,
  .cookie-banner .content,
  footer {
    --margin: 1rem;
  }
}

nav.main,
main,
.cookie-banner .content {
  width: min(var(--width), 100% - 2 * var(--margin));
  margin: var(--margin) auto;
}

@media screen and (max-width: 1200px) {
  nav.main {
    --margin: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  nav.main {
    --width: 512px;
    --margin: 3rem;
  }
}

@media screen and (max-width: 700px) {
  main,
  .cookie-banner .content {
    --margin-filled: min(1rem, 5vw);
    width: calc(100% - 2 * var(--margin-filled));
    margin: var(--margin) var(--margin-filled);
  }
}
@media screen and (max-width: 512px) {
  main,
  .cookie-banner .content {
    width: 100%;
    margin: 2rem 0;
  }
  main .box, main .box::before,
  .cookie-banner .content .box,
  .cookie-banner .content .box::before {
    border-radius: 0;
  }
}

.defs {
  display: none;
}

.up-arrow {
  position: fixed;
  right: -3rem;
  bottom: 1rem;
  z-index: 10;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.5rem;
  border-radius: 10px;
  background: var(--color-background-white);
  cursor: pointer;
  fill: var(--color-foreground);
  transition: 300ms ease;
}
.up-arrow.visible {
  right: 1rem;
}
.up-arrow:hover {
  background: var(--color-background-white-hover);
  fill: var(--color-background);
}

ul.posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  list-style-type: none;
}
@media screen and (max-width: 1000px) {
  ul.posts {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 700px) {
  ul.posts {
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 512px) {
  ul.posts {
    grid-gap: 1rem;
  }
}
ul.posts article {
  padding: 0;
  display: grid;
}
ul.posts article-box {
  height: 100%;
}
ul.posts article-box .box {
  background: none;
  z-index: 10;
  border-radius: 10px;
}
ul.posts article-box .box::before {
  background: none;
}
ul.posts article-box .box:hover::before {
  background: rgba(0, 0, 0, 0.4666666667);
}
ul.posts h2 {
  height: fit-content;
  align-self: end;
  background: var(--color-background-smoke);
  line-height: 4rem;
  padding: 0 1rem;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 512px) {
  ul.posts h2 {
    line-height: 2.5rem;
    font-size: 1rem;
  }
}
ul.posts h2,
ul.posts .image {
  grid-column: 1;
  grid-row: 1;
}
ul.posts li {
  margin: 0;
}
ul.posts img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

main article {
  --image-count: 1;
  padding: 1.5rem;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 700px) {
  main article {
    padding: 1rem;
  }
}
@media (max-width: 512px) {
  main article {
    padding-right: 0;
    padding-left: 0;
  }
}
main article > * {
  margin: 0 0 1rem;
}
@media (max-width: 512px) {
  main article > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
main article > *:last-child {
  margin-bottom: 0;
}
main article h1 {
  width: -moz-fit-content;
  width: fit-content;
}
main article h1:has(+ .date-created) {
  margin-bottom: 0;
}
main article h1 + .date-created {
  margin-bottom: 1rem;
}
main article h1 span {
  display: block;
}
main article h1 .subtitle {
  font-size: 0.5em;
  line-height: 1.5em;
}
main article h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  margin-top: 0.1rem;
  background: linear-gradient(90deg, #ff4bce, #6300ff);
  filter: brightness(1.3);
  transform: skewX(-45deg);
}
main article h2 {
  width: fit-content;
}
main article h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  margin-top: 0.1rem;
  background: linear-gradient(90deg, #ff4bce, #6300ff);
  filter: brightness(1.3);
  transform: skewX(-45deg);
}
main article .date-created {
  font-size: 0.9rem;
}
main article h2,
main article h3 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
main article hr {
  content: "";
  display: block;
  width: 75%;
  height: 0.25rem;
  margin-top: 0.1rem;
  background: linear-gradient(90deg, #ff4bce, #6300ff);
  filter: brightness(1.3);
  transform: skewX(-45deg);
  width: calc(100% - 4rem);
  border: none;
  margin: 2rem auto;
}
main article .images {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  main article .images {
    flex-direction: row;
  }
}
main article .gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 25%));
  justify-content: center;
  row-gap: 16px;
  column-gap: 16px;
}
@media screen and (max-width: 1350px) {
  main article .gallery {
    grid-template-columns: repeat(3, minmax(auto, 34%));
  }
}
@media screen and (max-width: 1050px) {
  main article .gallery {
    grid-template-columns: repeat(2, minmax(auto, 50%));
  }
}
@media screen and (max-width: 700px) {
  main article .gallery {
    grid-template-columns: 100%;
  }
}
main article .gallery .image {
  aspect-ratio: 1;
  overflow: hidden;
}
main article .gallery .image img {
  object-fit: cover;
  object-position: center;
}
main article .gallery .image::after {
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(transparent 60%, rgba(0, 0, 0, 0.6));
  transition: all var(--animation-duration);
  cursor: pointer;
}
main article .gallery .image:hover::after {
  transform: scale(1.5);
}
main article .vlog-embed {
  aspect-ratio: 16/9;
  border-radius: 10px;
  margin: 1rem 0;
}
main article .image,
main article .image-single,
main article .profile-image {
  vertical-align: top;
  position: relative;
}
main article .image img,
main article .image-single img,
main article .profile-image img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  main article .image,
  main article .image-single,
  main article .profile-image {
    width: calc(100% / var(--image-count) - 16px * (var(--image-count) - 1));
  }
}
main article .image,
main article .image-single {
  display: flex;
}
main article .image::after,
main article .image-single::after {
  content: attr(title);
  display: block;
  text-align: right;
  line-height: 2.5rem;
  font-style: italic;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 0.5rem;
  width: calc(100% - 1rem);
  background: var(--color-background-light-smoke);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
main article .interactive-map {
  min-width: 100%;
  height: 700px;
  border: none;
  margin-left: 0;
}
main article .profile-image {
  position: relative;
}
main article .profile-image::before {
  content: attr(title);
  position: absolute;
  color: black;
  top: 15px;
  left: 20px;
  font-size: 1.9rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  main article .profile-image::before {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  main article .profile-image::before {
    font-size: 1rem;
  }
}
main article .profiles {
  list-style-type: none;
}
main article .profiles li {
  margin-left: 0;
}
main article .profiles input {
  display: none;
}
main article .profiles input:checked + label {
  font-weight: bold;
  font-style: normal;
}
main article .profiles label {
  font-style: italic;
  cursor: pointer;
}
main article .strava-container {
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  position: relative;
}
main article .strava-container > iframe {
  height: 100% !important;
  position: absolute;
}
@media (max-width: 512px) {
  main article pre,
  main article .table-wrapper {
    width: 96%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
  }
  main article pre,
  main article td:first-of-type,
  main article th:first-of-type {
    border-left: 0;
  }
  main article pre,
  main article td:last-of-type,
  main article th:last-of-type {
    border-right: 0;
  }
}
main a, main a:visited, main a:hover {
  border-bottom: 1px solid;
  color: var(--color-primary-text);
  font-size: 1.05rem;
  line-height: 1.1rem;
}
main li {
  font-size: 1.05em;
  line-height: 1.75em;
}
main blockquote {
  background: var(--color-background-light-smoke);
  border-radius: 0 0.7rem 0.7rem 0;
  border-left: 2px solid var(--color-border-light);
  padding: 0.5rem 1rem;
}
main blockquote p:has(+ p) {
  margin-bottom: 1rem;
}
main p:has(mark) {
  padding-left: 1rem;
}
main mark::before {
  content: "- ";
}
main .posts {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: var(--margin);
}
main .posts a {
  width: min(50% - 1rem, 300px);
}
main .posts a, main .posts a:hover, main .posts a:focus, main .posts a:visited {
  border: none;
}
main .posts article {
  padding: 0;
}
main .posts h2, main .posts img {
  grid-column: 1;
  grid-row: 1;
}
main .posts h2 {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  height: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 0 0 10px 10px;
  color: var(--color-foreground);
  margin: 0;
  width: auto;
}
main .posts h2::after {
  display: none;
}
main .posts h2 .caption {
  font-size: 0.8rem;
  line-height: 1rem;
}
main .posts h2 .title {
  font-size: 1rem;
  line-height: 1.2rem;
}
main .posts img {
  max-width: 100%;
}

.controls {
  position: fixed;
  right: 0;
  top: calc(min(7rem, 30vw) + 3rem);
}
.controls .switch-container {
  padding: 0.5em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 1em;
}

.switch {
  display: flex;
  cursor: pointer;
  background-color: rgb(77, 133, 182);
  fill: #fff;
  font-size: 0.5rem;
}
@keyframes switchTurnOn {
  from {
    background-color: rgb(77, 133, 182);
  }
  60% {
    background-color: #191f2f;
  }
  to {
    background-color: #191f2f;
  }
}
@keyframes switchTurnOff {
  from {
    background-color: #191f2f;
  }
  60% {
    background-color: rgb(77, 133, 182);
  }
  to {
    background-color: rgb(77, 133, 182);
  }
}
.switch .background {
  position: absolute;
}
.switch .background .background-shades {
  transform: translateX(0);
}
@keyframes shadesTurnOn {
  from {
    transform: translateX(0);
  }
  50% {
    transform: translateX(19.2em);
  }
  to {
    transform: translateX(19em);
  }
}
@keyframes shadesTurnOff {
  from {
    transform: translateX(19em);
  }
  50% {
    transform: translateX(-0.2em);
  }
  to {
    transform: translateX(0);
  }
}
.switch,
.switch .background,
.switch .shadow-container {
  width: 8em;
  height: 4em;
  border-radius: 4em;
}
.switch .handle {
  display: block;
  width: 2.5em;
  height: 2.5em;
  margin: 0.8em;
  border-radius: 50%;
  background-color: rgb(238, 203, 85);
  box-shadow: -1px -3px 2px 0px rgba(0, 0, 0, 0.5) inset, 1px 2px 2px 1px rgba(255, 255, 255, 0.69) inset;
}
@keyframes handleTurnOn {
  from {
    transform: translateX(0);
    background-color: rgb(238, 203, 85);
  }
  50% {
    transform: translateX(4.2em);
    background-color: #ccc;
  }
  to {
    transform: translateX(4em);
    background-color: #ccc;
  }
}
@keyframes handleTurnOff {
  from {
    transform: translateX(4em);
    background-color: #ccc;
  }
  50% {
    transform: translateX(-0.2em);
    background-color: rgb(238, 203, 85);
  }
  to {
    transform: translateX(0);
    background-color: rgb(238, 203, 85);
  }
}
@keyframes starsTurnOn {
  from {
    transform: translateY(-10em);
  }
  50% {
    transform: translateY(0.2em);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes starsTurnOff {
  from {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10em);
  }
  to {
    transform: translateY(-10em);
  }
}
.switch .clouds .cloud-outer {
  fill: rgb(221.6693227092, 232.1553784861, 241.3306772908);
}
.switch .clouds .cloud-inner {
  fill: rgb(254.2199203187, 254.4653386454, 254.6800796813);
}
@keyframes cloudsTurnOn {
  from {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9em);
  }
  to {
    transform: translateY(9em);
  }
}
@keyframes cloudsTurnOff {
  from {
    transform: translateY(9em);
  }
  50% {
    transform: translateY(0.8em);
  }
  to {
    transform: translateY(1em);
  }
}
.switch .craters {
  fill: #999;
  transition: 350ms opacity;
}
.switch.on {
  background-color: #191f2f;
  animation: switchTurnOn;
  animation-duration: 700ms;
}
.switch.on .handle {
  transform: translateX(4em);
  background-color: #ccc;
  animation: handleTurnOn;
  animation-duration: 700ms;
}
.switch.on .background-shades {
  transform: translateX(19em);
  animation: shadesTurnOn;
  animation-duration: 700ms;
}
.switch.on .stars {
  transform: translateY(0);
  animation: starsTurnOn;
  animation-duration: 700ms;
}
.switch.on .clouds {
  transform: translateY(9em);
  animation: cloudsTurnOn;
  animation-duration: 700ms;
}
.switch.off {
  animation: switchTurnOff;
  animation-duration: 700ms;
}
.switch.off .handle {
  transform: translateX(0);
  background-color: rgb(238, 203, 85);
  animation: handleTurnOff;
  animation-duration: 700ms;
}
.switch.off .background-shades {
  animation: shadesTurnOff;
  animation-duration: 700ms;
}
.switch.off .stars {
  transform: translateY(-10em);
  animation: starsTurnOff;
  animation-duration: 700ms;
}
.switch.off .clouds {
  transform: translateY(1em);
  animation: cloudsTurnOff;
  animation-duration: 700ms;
}
.switch.off .craters {
  opacity: 0;
}
.switch .shadow-container {
  display: block;
  position: absolute;
  box-shadow: -4px 4px 5px 0px rgba(0, 0, 0, 0.4) inset, 3px -3px 5px -1px rgba(0, 0, 0, 0.17) inset;
}
.switch.init,
.switch.init .handle,
.switch.init .background-shades,
.switch.init .stars,
.switch.init .clouds {
  animation-duration: 0ms;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  margin-top: auto;
  padding: 0 max(var(--margin), 50% - 512px) 0.5rem;
  background: var(--color-background-smoke);
}
@media screen and (min-width: 601px) {
  footer .switch-container {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    height: 6rem;
  }
  footer .root-link {
    display: none;
  }
}
footer .root-link h3 {
  font-size: 1.7rem;
}
footer .root-link h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  margin-top: 0.1rem;
  background: linear-gradient(90deg, #ff4bce, #6300ff);
  filter: brightness(1.3);
  transform: skewX(-45deg);
  height: 0.15rem;
  margin-top: 0.05rem;
}

.cookie-banner {
  position: fixed;
  bottom: -15rem;
  left: 0;
  z-index: 5;
  display: flex;
  width: 100vw;
  height: 8.5rem;
  background: var(--color-background-smoke);
  transition: 500ms;
  backdrop-filter: blur(8px);
}
@media screen and (max-width: 660px) {
  .cookie-banner {
    height: fit-content;
  }
}
.cookie-banner.visible {
  bottom: 0;
}
.cookie-banner .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1000px) {
  .cookie-banner .content {
    --margin: 0.5rem;
  }
}
@media screen and (max-width: 512px) {
  .cookie-banner .content {
    margin-right: var(--margin);
    margin-left: var(--margin);
  }
}
.cookie-banner .content .text,
.cookie-banner .content .actions {
  display: flex;
}
.cookie-banner .content .text {
  flex-direction: column;
  line-height: 1.2rem;
}
.cookie-banner .content h3 {
  margin-bottom: 1.2rem;
}
.cookie-banner .content .actions {
  flex-direction: row;
  gap: 0.5rem;
  height: fit-content;
}
@media screen and (max-width: 660px) {
  .cookie-banner .content .actions {
    flex-direction: column;
  }
}

@keyframes open {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes close {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
dialog {
  width: 100vw;
  height: 100%;
  background-color: var(--color-background-dialog);
  backdrop-filter: blur(10px);
  justify-items: center;
  align-content: center;
  transition: display var(--animation-duration) allow-discrete, overlay var(--animation-duration) allow-discrete;
  animation: close var(--animation-duration) cubic-bezier(0.25, 0, 0.3, 1) forwards;
}
dialog[open] {
  animation: open var(--animation-duration) cubic-bezier(0.25, 0, 0.3, 1) forwards;
}
dialog .image-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: auto;
  max-height: 90%;
  position: relative;
}
dialog button {
  background: transparent;
  border: none;
}
dialog button:hover {
  background-color: var(--color-background-dialog);
  box-shadow: none;
}
dialog button[disabled] {
  opacity: 0.5;
}
dialog button[disabled]:hover {
  background: transparent;
  border: none;
}
dialog button.previous,
dialog button.next {
  width: 3rem;
  font-size: 3rem;
  padding: 0.5rem;
  position: absolute;
  height: calc(100% - 1rem);
}
@media (hover: none) {
  dialog button.previous,
  dialog button.next {
    display: none;
  }
}
dialog button.previous {
  left: 0.5rem;
  top: 0.5rem;
}
dialog button.next {
  right: 0.5rem;
  top: 0.5rem;
}
dialog button.close {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 0.2rem 1rem;
}
dialog img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  margin: 0 auto;
}
@media (max-width: 512px) {
  dialog img {
    max-width: 95vw;
    width: 100%;
  }
}
dialog p,
dialog button {
  color: var(--color-foreground-dialog);
}

html:has(dialog[open]) {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
