@import 'normalize.css';
:root {
  --background-color: #1c1c1c;
  --text-on-background: white;
  --accent-color: #ac8bdc;
  --accent-color-saturated: #6d09d7;
  --section-font-size: 1.5rem;
  --blur-modifier: 1;
  --mat-panel-blur: calc(15px * var(--blur-modifier));
}
@media (orientation: portrait) or (max-height: 400px) {
  --section-font-size: 1rem !important;
  br {
    display: none;
  }
}
* {
  box-sizing: border-box;
}
html {
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  background: var(--background-color);
  color: var(--text-on-background);
}
a {
  color: inherit;
  text-decoration: none;
}
#container {
  width: calc(100% + 50px);
  padding: 0 calc(25% + 50px) 0 10%;
  height: 100vh;
  overflow-y: scroll;
  background-color: #00000001;
  text-shadow: 0 0 5px black;
  z-index: 1;
}
#container * {
  z-index: inherit;
  user-select: none;
}
#container > section {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  height: 100vh;
  font-size: var(--section-font-size);
}
#container > section > * {
  width: fit-content;
}
@media (orientation: portrait) and (max-width: 768px) {
  #container {
    width: 100%;
    height: 85vh;
    padding: 0 10%;
    position: relative;
    scroll-snap-type: y mandatory;
  }
  #container > section {
    padding-top: 0;
    height: 85vh;
    scroll-snap-align: start;
    text-align: center;
    justify-content: center;
    gap: 1rem;
    line-height: 2rem;
  }
  #container > section:first-child {
    --section-font-size: 1.8rem;
  }
  #container > section > * {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  #container {
    padding: 0 40% 0 15%;
  }
}
@media (orientation: portrait) or (max-height: 400px) {
  :root {
    --section-font-size: 1.2rem;
  }
  br {
    content: '';
    display: block;
    height: 5px;
  }
}
@media (orientation: portrait) {
  br {
    display: none;
  }
}
.interactive:not([data-interactive-type="focused"]) {
  transition: 0.3s ease-out;
  transition-property: color, font-weight;
}
.interactive:not([data-interactive-type="focused"]):hover {
  color: var(--background-color);
  font-weight: bolder;
}
@media (orientation: landscape) or (min-width: 769px) {
  #navigation {
    background-color: #fff1;
    backdrop-filter: blur(var(--mat-panel-blur));
    font-size: 1.3rem;
    width: 20vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #navigation > .navigation_container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #navigation > .navigation_container:has(:hover) {
    color: #c4c4c4;
  }
  #navigation > .navigation_container > .navigation_item {
    width: 100%;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease-in-out color;
  }
  #navigation > .navigation_container > .navigation_item:hover {
    color: var(--text-on-background);
  }
  #navigation > .navigation_container > .navigation_item:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: 0.2s ease-in-out width;
  }
  #navigation > .navigation_container > .navigation_item.active:after {
    width: 100%;
  }
  #navigation .nav_arrow {
    display: none;
  }
}
@media (orientation: portrait) and (max-width: 768px) {
  #navigation {
    background-color: #fff1;
    backdrop-filter: blur(var(--mat-panel-blur));
    display: flex;
    align-items: center;
    font-size: 2rem;
    position: relative;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: 3;
    width: 100%;
    overflow-x: hidden;
  }
  #navigation > .navigation_container {
    padding: 1rem 0;
    display: flex;
    width: max-content;
  }
  #navigation > .navigation_container > .navigation_item {
    display: inline-block;
    width: 100vw;
    text-align: center;
  }
}
@media (orientation: portrait) and (max-width: 768px) {
  .nav_wrapper {
    height: 15vh;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .nav_wrapper > .nav_arrow {
    font-size: 4rem;
    line-height: 100%;
    text-align: center;
    position: absolute;
    bottom: calc(50% - (4rem / 2.5));
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    z-index: 4;
  }
  .nav_wrapper > .nav_arrow.arrow_left {
    left: 0;
  }
  .nav_wrapper > .nav_arrow.arrow_right {
    right: 0;
  }
}
html.portrait_mobile_scroll #container,
html.landscape_mobile_scroll #container {
  position: relative;
  justify-content: start;
  scroll-snap-type: y mandatory;
}
html.portrait_mobile_scroll #container > section,
html.landscape_mobile_scroll #container > section {
  scroll-snap-align: start;
}
html.portrait_mobile_scroll #navigation,
html.landscape_mobile_scroll #navigation {
  z-index: 3;
}
.outlined {
  text-shadow: 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated);
}
.mat_panel {
  background-color: #fff1;
  backdrop-filter: blur(var(--mat-panel-blur));
}
.hidden {
  display: none;
}
#rolling_switcher {
  --font-size: var(--section-font-size);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#rolling_switcher > div.static {
  text-align: right;
}
#rolling_switcher > div#switcher {
  position: relative;
}
#rolling_switcher > div#switcher > .switcher_item {
  transition: 0.4s ease-in-out opacity, 0.5s ease-in translate;
  position: absolute;
  left: 0;
  top: calc(50% - var(--font-size) / 2 - var(--font-size) / 10);
  width: fit-content;
  text-align: center;
  margin: auto;
  text-shadow: 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated), 0 0 5px var(--accent-color-saturated);
}
#rolling_switcher > div#switcher > .switcher_item:not(.active) {
  opacity: 0;
  translate: 0 -20px;
  pointer-events: none;
}
@media (orientation: portrait) and (max-width: 768px) {
  #rolling_switcher > div#switcher {
    text-align: center;
    margin: auto;
    width: 100%;
  }
  #rolling_switcher > div#switcher > .switcher_item {
    width: 100%;
  }
}
@media (orientation: portrait) {
  #rolling_switcher {
    flex-direction: column;
    gap: 1.5rem;
  }
}
html.landscape_mobile_scroll #rolling_switcher > .static {
  text-align: left;
}
@media (max-width: 720px) {
  html.landscape_mobile_scroll #rolling_switcher {
    gap: 0;
    display: inline;
  }
  html.landscape_mobile_scroll #rolling_switcher #switcher {
    display: inline-block;
  }
}
html.portrait_mobile_scroll #rolling_switcher > .static {
  text-align: center;
}
:root {
  --interaction-color: white;
  --interaction-default-opacity: 0.5;
  --interaction-active-opacity: 0.9;
  --interaction-focused-opacity: 1;
  --interaction-default-blur: calc(100px * var(--blur-modifier));
  --interaction-active-blur: calc(50px * var(--blur-modifier));
  --interaction-focused-blur: calc(40px * var(--blur-modifier));
  --decoration-backdrop-filter-blur: calc(200px * var(--blur-modifier));
  --decoration-filter-blur: calc(20px * var(--blur-modifier));
}
#interactive_background {
  position: relative;
  height: 100vh;
}
#interactive_background > #interaction {
  position: absolute;
  width: 200px;
  aspect-ratio: 1;
  background-color: var(--interaction-color);
  z-index: -2;
  left: 50%;
  top: 50%;
  scale: 1 1.3;
  translate: -50% -50%;
  border-radius: 50%;
  transition: 0.8s cubic-bezier(0.4, 1.1, 0.53, 1) all;
  filter: blur(var(--interaction-default-blur));
  opacity: var(--interaction-default-opacity);
  animation: interaction_idle 30s both ease-in-out;
}
@media (orientation: landscape) and (min-width: 769px) {
  #interactive_background > #interaction.active {
    filter: blur(var(--interaction-active-blur));
    opacity: var(--interaction-active-opacity);
  }
  #interactive_background > #interaction.focused {
    opacity: var(--interaction-focused-opacity);
    background-color: var(--accent-color);
    filter: blur(var(--interaction-focused-blur));
    scale: 1;
    translate: -50% -25%;
  }
}
#interactive_background > #background_decoration {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#interactive_background > #background_decoration .background_decoration_container {
  width: 80%;
  height: 80%;
  margin: calc(20% / 4) auto;
  position: relative;
}
#interactive_background > #background_decoration .background_decoration_container > .decoration {
  z-index: 0;
  pointer-events: all;
  position: absolute;
  width: 150px;
  translate: -50% -50%;
  aspect-ratio: 1;
  backdrop-filter: blur(var(--decoration-backdrop-filter-blur));
  filter: blur(var(--decoration-filter-blur));
  opacity: 0.7;
  transition: 0.3s ease-in background-color;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
#interactive_background > #background_decoration .background_decoration_container > .decoration:hover {
  background-color: var(--accent-color);
}
#interactive_background > #background_decoration .background_decoration_container > .decoration:nth-child(3n) {
  background-color: var(--accent-color);
  opacity: 0.4;
}
@media (orientation: portrait) and (max-width: 768px) {
  #interactive_background > #background_decoration .background_decoration_container {
    width: 50%;
    height: 50%;
    margin: calc(50% / 4) auto;
  }
}
@keyframes interaction_idle {
  from {
    rotate: 0;
  }
  to {
    rotate: 360deg;
    scale: 1.2 0.9;
  }
}
.polygon_shape {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
html:is(.low_performance) {
  --blur-modifier: 0;
}
html:is(.low_performance) .mat_panel {
  background-color: #fff1;
}
html:is(.low_performance) #interaction {
  display: none;
}
html:is(.low_performance) .decoration {
  background-color: #fff1;
}
html:is(.low_performance) #navigation {
  background-color: #31313177;
}
#performance_popup {
  --margin: 0.5rem;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1rem 3rem 1rem;
  background-color: var(--background-color);
}
#performance_popup h3 {
  margin: 0 0 var(--margin) 0;
}
#performance_popup .input_group {
  display: flex;
  margin: var(--margin) 0;
  font-weight: bolder;
  gap: 1rem;
}
#performance_popup .input_group input[type="checkbox"] {
  scale: 1.5;
}
#performance_popup button {
  width: fit-content;
  outline: none;
  border: none;
  border-radius: 20px;
  margin: calc(var(--margin) * 2) auto 0;
  padding: 0.5rem 0.8rem;
  background-color: var(--accent-color);
  color: black;
  font-weight: 500;
}
#performance_popup.hidden {
  display: none;
}
@media (orientation: landscape) {
  #performance_popup {
    padding: 0 20%;
    --margin: 1rem;
  }
}
a#performance_settings_button {
  font-size: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  color: lighter(grey);
  text-decoration: none;
}
html,
body {
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */
