<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  background: black;
  overflow-y: hidden; }

main {
  width: 100vw;
  height: 100vh; }

div#slider_container {
  display: flex;
  height: 100vh; }
  div#slider_container &gt; div {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    div#slider_container &gt; div &gt; span {
      text-align: center;
      width: 100%;
      padding: 0 20px;
      text-transform: uppercase;
      font-size: 6vh;
      color: white;
      z-index: 1;
      transform: scale3d(0.8, 0.8, 0.8); }
    div#slider_container &gt; div &gt; img {
      position: absolute;
      width: 100%; }
      div#slider_container &gt; div &gt; img.front {
        position: absolute;
        z-index: 2;
        bottom: 0;
        width: 100%;
        opacity: 0.4;
        transform: translateY(0);
        filter: blur(4px); }
      div#slider_container &gt; div &gt; img.background {
        height: 100%;
        transform: scale3d(1.05, 1.05, 1.05); }
    div#slider_container &gt; div.highlight &gt; img.background {
      transform: scale3d(1, 1, 1); }
    div#slider_container &gt; div.highlight &gt; img.front {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0.1px); }
    div#slider_container &gt; div.highlight &gt; span {
      transform: scale3d(1, 1, 1); }
    div#slider_container &gt; div.complete img, div#slider_container &gt; div.complete span {
      transition-duration: 1.5s; }

header {
  position: fixed;
  top: 0;
  z-index: 3;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  align-items: center; }
  header &gt; img {
    width: 400px;
    max-width: 70vw; }
  header a.menu_link {
    text-decoration: none;
    width: 80px;
    max-width: 14vw;
    display: flex;
    justify-content: center;
    align-items: center; }
    header a.menu_link &gt; img {
      width: 100%; }

body.show_menu aside {
  right: 0; }

body.show_menu header a.menu_link &gt; img {
  display: none; }

body.show_menu header a.menu_link:after {
  content: "×";
  color: white;
  font-size: 3rem; }

aside {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  z-index: 2;
  top: 0;
  color: white;
  right: -100vw;
  transition-duration: 1s; }
  aside &gt; nav, aside &gt; div {
    padding: 13vh 10vw 10vh 10vw;
    box-sizing: border-box;
    text-align: center;
    height: 100vh;
    display: none; }

@media (max-width: 480px) {
  aside &gt; nav, aside &gt; div {
    padding: 15vh 2vw 10vh 2vw; } }
  aside[data-show='main'] &gt; nav#main_menu, aside[data-show='gallery'] &gt; div#gallery, aside[data-show='info'] &gt; div#info, aside[data-show='contact'] &gt; div#contact, aside[data-show='gallery_menu'] &gt; nav#gallery_menu {
    display: flex; }
  aside &gt; nav {
    flex-direction: column;
    justify-content: center; }
    aside &gt; nav a {
      font-size: 3vh;
      color: white;
      line-height: 2;
      text-decoration: none; }
      aside &gt; nav a:hover {
        color: yellow; }
  aside div#contact {
    flex-direction: column;
    justify-content: center; }
  aside div#info &gt; div {
    overflow: auto;
    text-align: left; }
    aside div#info &gt; div &gt; p {
      padding-left: 15px; }
  aside div#gallery span.view_icons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%); }
    aside div#gallery span.view_icons &gt; a &gt; svg {
      width: 40px; }
  aside div#gallery &gt; div {
    width: 100%;
    height: 100%;
    display: none; }
    aside div#gallery &gt; div.grid_container {
      overflow: auto; }
      aside div#gallery &gt; div.grid_container div#gallery_grid {
        width: 100%;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        align-items: center; }
        aside div#gallery &gt; div.grid_container div#gallery_grid img {
          width: 150px;
          height: 150px; }
        aside div#gallery &gt; div.grid_container div#gallery_grid &gt; a {
          margin: 15px; }
    aside div#gallery &gt; div.gallery_container {
      overflow: hidden; }
      aside div#gallery &gt; div.gallery_container a#prev_slide, aside div#gallery &gt; div.gallery_container a#next_slide {
        position: absolute;
        width: 3vh;
        height: 3vh;
        top: 50%;
        border: solid 2px #FFF;
        transform: translateY(-50%) rotate(45deg);
        cursor: pointer; }
        aside div#gallery &gt; div.gallery_container a#prev_slide.disabled, aside div#gallery &gt; div.gallery_container a#next_slide.disabled {
          opacity: 0.5;
          pointer-events: none; }
      aside div#gallery &gt; div.gallery_container a#prev_slide {
        left: 20px;
        border-top: none;
        border-right: none; }
      aside div#gallery &gt; div.gallery_container a#next_slide {
        right: 20px;
        border-left: none;
        border-bottom: none; }
      aside div#gallery &gt; div.gallery_container div#gallery_slider {
        height: 100%;
        min-width: 100%;
        display: flex; }
        aside div#gallery &gt; div.gallery_container div#gallery_slider.animated &gt; span {
          transition-duration: 1s; }
        aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span {
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative; }
          aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span &gt; img {
            max-width: 90%;
            max-height: 90%; }
          aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span span.info {
            position: absolute;
            display: flex;
            font-size: 11px;
            flex-direction: column;
            text-align: left;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px;
            width: 200px;
            box-shadow: 2px 2px 4px #000;
            top: 0;
            left: 0; }
            aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span span.info span.details {
              display: none;
              flex-direction: column;
              margin-top: 10px; }
              aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span span.info span.details &gt; strong {
                margin-bottom: 10px; }
            aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span span.info &gt; a:before {
              content: "+ "; }
            aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span span.info.expanded &gt; a:before {
              content: "- "; }
            aside div#gallery &gt; div.gallery_container div#gallery_slider &gt; span span.info.expanded span.details {
              display: flex; }
  aside div#gallery[data-show='grid'] &gt; div.grid_container, aside div#gallery[data-show='slider'] &gt; div.gallery_container {
    display: block; }
  aside div#gallery[data-show='slider'] &gt; a.back_button {
    display: none; }
  aside div#gallery[data-show='slider'] a#slide_view &gt; svg &gt; rect {
    fill: yellow; }
  aside div#gallery[data-show='grid'] a#grid_view &gt; svg &gt; g {
    fill: yellow; }
  aside a.back_button {
    text-align: left;
    position: absolute;
    top: 10vh;
    font-size: 1.4rem; }
    aside a.back_button:before {
      content: "«"; }

a {
  color: white;
  text-decoration: none; }
  a:hover {
    color: yellow; }
</pre></body></html>