<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
  }  

h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral SC', serif;
  }
  .container {
    margin: 0 2em;
  }
  header {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  header .title {
    margin: 2em 0 0;
  }
  header ul {
    list-style-type: none;
    display: flex;
    padding: 0;
  }
  header li {
    margin: 0 5px;
  }
  header li a {
    color: #555;
    text-decoration: none;
    padding: 5px 20px;
  }
  header li a:after {
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    background: #aaa;
    margin: 4px auto;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(-5px);
  }
  header li a:hover:after {
    opacity: 1;
    transform: translateY(0px);
  }
  main {
    display: flex;
    width: 100%;
  }
  form {
    display: flex;
    flex-flow: nowrap column;
    justify-content: left;
    border-style: solid;
  }

  label, input {
    font-size: inherit;
  }
  label {
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0;
  }
  input {
    border-radius: 3px;
    padding: 10px;
  }
  input:not([type=submit]) {
    border: 1px solid #ccc;
  }
  input[type=submit] {
    cursor: pointer;
  }
  input[type=submit].loading {
    color: rgba(0,0,0,0) !important;
  }
  #submit-container {
    position: relative;
    display: inline-flex;
    align-items: left;
    width: fit-content;
    margin-top: 20px;
  }
  #loader-container {
    position: absolute;
    display: flex;
    width: 100%;
  }
  #confirmation-message {
    margin: auto;
  }
  #error-message,
  #recaptcha-error-message,
  #timeout-error-message,
  #invalid-email-error-message {
    background-color: white;
    color: red;
    padding: 20px;
  }
  .g-recaptcha {
    margin-top: 20px;
  }

  form .success {
    color: green !important;
    text-align: center;
  }

  .hidden {
    display: none;
  }
  .no-visibility {
    visibility: hidden;
  }
  .fragment-loader {
    width: 30px;
    height: 10px;
    margin: auto;
  }
  .fragment-loader .fragment-square {
    opacity: 0;
    transform: translateZ(0);
    animation: loader 1.6s infinite both;
    will-change: opacity;
    fill: #a9b5c0;
  }
  .fragment-loader .left {
    transform: translate(0);
    animation-delay: 0;
  }
  .fragment-loader .middle {
    transform: translate(10px);
    animation-delay: .2s;
  }
  .fragment-loader .right {
    transform: translate(20px);
    animation-delay: .4s;
  }
  @keyframes loader{
    0%, 80%, to { opacity: 0 } 40% { opacity: 1 }
  }

  @media screen and (max-width: 1200px) {
    main {
      flex-flow: column nowrap;
    }
  }
  main .blog-posts-container {
    padding: 15px;
    flex: 2;
  }
  main .post-container {
    margin: -30px;
  }

  main .about {
    padding: 15px;
    background: #fafafa;
    flex: 1;
    margin: 5px 15px;
    margin-left: 30px;
  }
  main .profile-pic {
    width: 250px;
    height: 250px;
    background: url('/static/DSC_0028.JPG') center/cover;
    border-radius: 50%;
    margin: 0 auto;
  }
  main .bio {
    width: 80%;
    margin: 10px 10%;
    text-align: center;
    line-height: 1.5em;
  }

  main .portfolio-post {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 30px;
  }
  

:root {
    font-size: 16px;
  }
  
  body, html {
    padding: 0;
    margin: 0;
  }
  
  .post-container {
    display: flex;
    padding: 20px;
  }
  .post-container a {
    color: #333;
    text-decoration: none;
  }

  .form-container {
    display: flex;
    padding: 20px 15px 15px 15px;
    margin-top: 5px;
  }
  .form-container a {
    color: #333;
    text-decoration: none;
  }
  
  .masonry-col {
    flex: 1;
  }
  .masonry-col:first-child {
    padding-right: 20px;
  }


  
  .post {
    width: 100%;
    font-size: 10px;
    margin-bottom: 20px;
    background: url('/static/overlay.svg') center/cover;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    transition: .3s ease-in-out;
    cursor: pointer;
  }
  .form {
    width: 100%;
    font-size: 10px;
    margin-bottom: 20px;
    padding: 80px 40px;
    text-align: left;
    position: relative;
    transition: .3s ease-in-out;
    cursor: pointer;
  }
  .post:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
    transition: .3s;
  }
  .form:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  }
  .post:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  }
  .post:hover:after {
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
  }
  .post:hover .play {
    opacity: 1;
  }
  .post:hover .play circle {
    stroke-dashoffset: 0;
  }
  
  .post_content {
    position: relative;
    z-index: 1;
  }
  .post_content .play {
    padding-top: 40px;
    opacity: .4;
    transition: .3s;
  }
  .post_content .play svg &gt; * {
    fill: none;
    stroke: white;
    stroke-width: 2px;
  }
  .post_content .play circle {
    stroke-dasharray: 160px;
    stroke-dashoffset: 160px;
    transition: .3s ease-in;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  
  .post_title {
    background: white;
    display: inline-block;
    padding: 10px 20px;
    position: relative;
  }
  .post_title:after {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border: 1px solid white;
  }
  .post_title h1 {
    font-family: 'Spectral SC', serif;
    color: #333;
    font-size: 1.6em;
    margin: 0;
  }
  .post_title .tags {
    text-transform: uppercase;
    font-size: 300;
    font-size: 0.9em;
  }
  
  .post_video {
    padding: 60px 40px;
  }
  .post_video .play {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .post_video .post_title {
    background: none;
    color: white;
    padding: 20px 0;
  }
  .post_video .post_title h1 {
    color: white;
  }
  .post_video .post_title:after {
    border: 0;
  }
  
  .post_text {
    background: #fff;
    padding: 40px;
  }
  .post_text:after {
    background: #f8f8f8;
  }
  .post_text .post_title {
    border: 1px solid #888;
    background: none;
  }
  .post_text .post_title:after {
    border-color: #888;
  }
  .post_text .post_preview {
    margin-top: 20px;
  }


  
  @media screen and (min-width: 400px) {
    .post {
      font-size: 14px;
    }
    .form {
      font-size: 14px;
    }
  }
  @media screen and (min-width: 900px) {
    .post {
      padding-top: 80px !important;
    }
    .form {
      padding-top: 80px !important;
    }
  }
  
  @media screen and (max-width: 400px) {
    .post-container {
      padding: 5px;
    }
    .form-container {
      padding: 5px;
    }
  }
  @media screen and (max-width: 800px) {
    .masonry-col {
      display: none;
    }
  
    .masonry-full {
      display: block !important;
    }
    .portfolio-post-image {
      max-width: 500px;
    }
  }


  #footer-image {
    max-height: 50px;
}

footer {
    text-align: center;
    bottom: 0;
    width: 100%;
    display: block;
    height: 60px;
}

pre {
  position:relative;
  overflow: auto;
  background: #EBEBFE;
  border-radius: 4px;
  font-family: 'Fira Mono', monospace;


}</pre></body></html>