@import url("https://cdn.jsdelivr.net/npm/@catppuccin/palette/css/catppuccin.css");
@import url("https://fonts.googleapis.com/css?family=JetBrains Mono");
:root {
  --background_color: var(--ctp-mocha-base);
  --small_border: 2px dashed var(--ctp-mocha-text);
  --medium_border: 3px solid var(--ctp-mocha-text);
  --small_radius: 2px;
  --medium_radius: 3px;
  --large_radius: 6px;
  --small_padding: 6px;
  --medium_padding: 8px;
  --large-padding: 16px;
  --list_gap: 9px;
  --page-width: 700px;
}

* {
  margin: 0;
  padding: 0;
  background: none;
  font-family: "JetBrains Mono", monospace;
}

html {
  background-color: var(--background_color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  scroll-behavior: auto;
}

/* --- TYPOGRAPHY --- */
p, a, li {
  font-size: 16px;
  color: var(--ctp-mocha-text);
}

a {
  color: var(--ctp-mocha-blue);
  cursor: pointer;
  text-decoration: underline;
}

a:visited {
  color: var(--ctp-mocha-lavender);
}

h1 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
  color: var(--ctp-mocha-lavender);
  font-weight: 900;
}

html.phone p, html.phone a, html.phone li {
  font-size: 14px;
}
html.phone h1 {
  font-size: 28px;
}
html.phone h3 {
  font-size: 18px;
}

/* --- LAYOUT --- */
#page-container {
  display: flex;
  flex-direction: column;
  width: var(--page-width);
}

html.phone #page-container {
  width: calc(100% - 16px);
  padding: 0 8px;
}

.page-segment {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}

.box-container {
  border: var(--small_border);
  border-radius: var(--small_radius);
  padding: var(--small_padding);
  width: calc(100% - var(--small_padding) * 2);
}

*.column {
  display: flex;
  flex-direction: column;
}

*.row {
  display: flex;
  flex-direction: row;
}

*.spacer {
  height: 20px;
}

.stop-scrolling {
  height: 100dvh;
  overflow: hidden;
}

ul {
  list-style-position: inside;
}

/* --- ELEMENTS --- */
*.button {
  background-color: var(--ctp-mocha-surface0);
  cursor: pointer;
  border-radius: var(--medium_radius);
  padding: var(--small_padding);
  align-items: center;
}

*.button > * {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

html.desktop *.button:hover {
  background-color: var(--ctp-mocha-surface1);
}

html.phone *.button {
  background: var(--ctp-mocha-surface0);
}
html.phone *.button:active {
  background: none;
}

.stuff-card {
  padding: var(--large-padding);
  border-radius: var(--large_radius);
  background: var(--ctp-mocha-mantle);
  gap: var(--large-padding);
  width: calc(100% - var(--large-padding) * 2);
}
.stuff-card > .column {
  gap: var(--large-padding);
}
.stuff-card img {
  -webkit-clip-path: inset(0 0 round var(--large_radius));
          clip-path: inset(0 0 round var(--large_radius));
}
.stuff-card .small-images {
  gap: var(--large-padding);
}
.stuff-card .small-images * {
  background-repeat: no-repeat;
  background-size: cover;
  flex-grow: 1;
  -webkit-clip-path: inset(0 0 round var(--large_radius));
          clip-path: inset(0 0 round var(--large_radius));
}
.stuff-card .image-container {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: var(--large-padding);
  transition: 150ms;
}
.stuff-card .fullscreen-image-viewer {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: var(--scroll-position-y);
  background: var(--ctp-mocha-crust);
}
.stuff-card .fullscreen-image-viewer .button {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--ctp-mocha-surface0);
  border-radius: var(--large_radius);
  cursor: pointer;
  z-index: 1000;
  padding: 0;
  transition: 150ms;
}
.stuff-card .fullscreen-image-viewer .button:hover {
  background-color: var(--ctp-mocha-surface2);
  transition: 150ms;
}
.stuff-card .fullscreen-image-viewer .close-button {
  position: absolute;
  top: 25px;
  left: 25px;
}
.stuff-card .fullscreen-image-viewer .swiper-button-next {
  right: 25px;
}
.stuff-card .fullscreen-image-viewer .swiper-button-prev {
  left: 25px;
}
.stuff-card .fullscreen-image-viewer .button.disabled {
  display: none;
}
.stuff-card .fullscreen-image-viewer .swiper-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.stuff-card .fullscreen-image-viewer .swiper-slide img {
  max-width: calc(100% - 200px);
  max-height: 80%;
}
.stuff-card .fullscreen-image-viewer .swiper-pagination-bullet {
  background-color: var(--ctp-mocha-surface0);
}
.stuff-card .fullscreen-image-viewer .swiper-pagination-bullet-active {
  background-color: var(--ctp-mocha-lavender);
}
.stuff-card .fullscreen-image-viewer.active {
  display: block;
}

html.desktop .stuff-card .image-container:hover {
  opacity: 50%;
  transition: 150ms;
}

html.phone .stuff-card {
  flex-wrap: wrap;
}
html.phone .stuff-card .image-container:active {
  opacity: 50%;
  transition: 150ms;
}
html.phone .stuff-card > .column {
  flex-basis: 100% !important;
}
html.phone .stuff-card > p {
  flex-basis: 100% !important;
}
html.phone .stuff-card .fullscreen-image-viewer .swiper-slide img {
  max-width: 90%;
}
html.phone .stuff-card .swiper-button-next {
  display: none;
}
html.phone .stuff-card .swiper-button-prev {
  display: none;
}

/* --- EFFECTS --- */
.rainbow-text {
  background: linear-gradient(90deg, var(--ctp-mocha-red) 2%, var(--ctp-mocha-peach) 18%, var(--ctp-mocha-yellow) 34%, var(--ctp-mocha-green) 50%, var(--ctp-mocha-sapphire) 66%, var(--ctp-mocha-blue) 82%, var(--ctp-mocha-lavender) 98%);
  width: -moz-fit-content;
  width: fit-content;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}/*# sourceMappingURL=style.css.map */