<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
  min-height: 100%;
  margin: 0;
  height: 100%;
}

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body &gt; * {
  z-index: 2;
}

body &gt; .container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body:after {
  content: "";
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("/images/bg.jpg") -25vw bottom no-repeat #020202;
  background-size: 100%;
}

@media (max-aspect-ratio: 1 / 1) {
  body:after {
    background-size: 100vh;
  }
}

@media screen and (max-width: 1087px) {
  nav.navbar .field.is-grouped {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.articles .column {
  margin-top: 4vh;
}

.articles .article-body:after {
  content: "";
  display: table;
  clear: both;
}

.articles .piece {
  float: left;
  width: 35%;
  padding: 0 1em;
}

.articles .piece .video {
  background: transparent none center center no-repeat;
  background-size: contain;
}

.articles .piece .video span {
  position: absolute;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 6em;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}

.articles .piece .video:hover span {
  opacity: 1;
}

.articles .piece .video.video-type span {
  opacity: 1;
}

.spaced {
  padding: 2em 0;
}

.modal-card {
  min-width: 80%;
  max-width: 1000px;
}

#mediaModal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#mediaModal figure.image {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.footer {
  padding: 3rem 1.5rem 3rem;
}

@media screen and (max-width: 768px) {
  .column.mobile-force-fit {
    padding: 0;
  }

  .column.mobile-force-fit .hero-body {
    padding: 3rem 0.5rem;
    width: 90vw;
  }
}

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