<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Bryan Hadaway
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/bhadaway/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2024.2
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}



html, body {
    margin: 0;
    padding: 0;
    height: 100%;
	scroll-behavior: smooth;
  	scroll-snap-type: y mandatory;
	line-height: 20px;
	font-size: 0.86rem;
	letter-spacing: 0.08em;
  	font-family: "Work Sans", sans-serif;
  	font-optical-sizing: auto;
	color: #fff;
	background-color: #0D0D0D;
}

#wrapper {
		padding: 0px;
}

.page-container {
  padding: 24px;
}

/* Work Landing */

.work-landing {
  scroll-behavior: smooth;
}

.page-id-340 {
	overscroll-behavior: none;
  	scroll-padding-top: 1px; /* nudges top alignment */
}
	
.work-section {
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
	 scroll-snap-align: start;
}

.work-media img,
.work-media video {
  display: block;
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: top;
  position: relative; /* optional if you want further tweaks */
}

.work-media img {
  opacity: 0;
  animation: fadeIn 1s ease-in-out 3s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.work-link {
  text-decoration: none;
  color: inherit;
  display: block;
  max-width: 675px;
  margin: 0 auto;
  text-align: center;
	margin-top: -20px;
}

.work-title {
  font-weight: normal;
	margin-top: 18px;
}

/* Landing Page Header */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3rem 6rem;
/*   pointer-events: none; */
  z-index: 9999;
}

.site-contact {
  display: flex;
  gap: 2.5rem; /* space between name and email */
/*   pointer-events: auto; */
}

.site-contact a {
  color: inherit;
  text-decoration: none;
}

.scroll-counter {
  position: fixed;
  bottom: 4rem;
  left: 6rem;
  z-index: 1000;
  pointer-events: none;
  color: lavender;
}

/* Single Post */

.single-post {
  flex: 1;
  padding: 4rem 2rem;
}

.single-post-inner {
  max-width: 900px; /* adjust for readability */
  margin: 0 auto;
}

.single-post iframe,
.single-post video {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 80vh; /* adjust as needed */
  display: block;
  margin-bottom: 2rem;
}

.two-column-layout {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 575px;
  margin: 4rem 0rem 2rem auto;
  padding: 0;
}

.two-column-layout .info {
  flex: 1;
  max-width: 310px;
}

.two-column-layout .description {
  flex: 2;
  max-width: 310px;
}

span.trailer {
  color: gray;
}

.site-contact {
  color: lavender;
}

.site-name a {
  border-bottom: 1px solid lavender;
}

/* Works Grid */

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px; /* Adjust spacing between items */
}

.work-item {
  display: block;
  text-align: center;
}

.work-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 6px auto;
}

.work-item h3 {
  margin: 0;
  font-weight: normal;
  color: #fff;
}

/* Toggle Nav */

.toggle-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5rem;
  z-index: 10;
  text-decoration: none;
  color: #fff; /* Adjust based on your theme */
  background: #000;
  padding: 0.75em;
  border-radius: 5px;
}

.toggle-link,
.page-link {
    margin: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
	text-align: center;
}

.toggle-link.active {
    color: #424242;
	font-weight: bold;
}

.toggle-nav a {
} 

/* Works Item */

.work-item.process {
        display: block;
    }

.work-item {
  display: block;
  margin-bottom: 1rem;
}

.work-item {
  argin-bottom: 1rem;
}

.work-item video {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
    padding: 0;
}

p {
	padding-bottom: 1rem;
}

a {
	color: #fff;
	text-decoration: none;
}

em, i {
    font-style: italic !important;
}

strong {
	font-weight: bold;	
}

ol {
    list-style: decimal outside;
    margin-left: 1.5em;
    padding-left: 0;
}

ol li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
}

ol ol {
    list-style-type: lower-alpha;
    margin-left: 1.5em;
}

img {
	  margin: 0 0 6px 0;
}

.about-content {
	 margin: 4.5rem auto;
	 max-width: 500px !important;
}

.custom-text {
	width: 500px;
	 margin: 0 auto;
	padding-bottom: 1rem;
}

.footnote {
		font-size: 10px;
	font-style: italic;
}

/* Front Page */

 .main-media-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  .main-media {
    position: relative;
    top: 50%;
    left: 50%;
    max-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

/* Mobile-specific adjustments */
@media (max-width: 768px) {
	
	  .main-media {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh; /* use 100vh if svh is unsupported */
    max-width: none;
    min-height: 0;
    object-fit: cover;
    transform: none;
  }
	
	.custom-text {
		width: 100%;
	}	
	  .work-media video,
  .work-media img {
    max-width: 100%;
    width: 100%;
  }
	
	.site-header {
/*   position: absolute; */
  padding: 2rem 3rem;
}
	 .two-column-layout {
    flex-direction: column;
    max-width: 100%;
    margin: 2rem 0;
    gap: 0.5rem;
  }

  .two-column-layout .info,
  .two-column-layout .description {
    max-width: 100%;
  }
	
}</pre></body></html>