<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Variables */
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: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {

  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }


/* MAIN */

html, body {
  width: 100%;
  height: 100%;
}

body {
  font: normal 0.8em/1.8em 'Unbounded', cursive;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: black;
  color: white;
  margin: 0;
  padding: 0;
  position: relative;
}

h1 {
  font-size: 6em;
  line-height: 1em;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 20px;
 }

h3 {
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 20px;
 }


p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 0;
}

a {
  color: white;
}

a:hover {
  color: white;
}

strong {
  font-weight: bold;
}

em {
  font-size: 1.6em;
  line-height: 1.4em;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

button,
input:focus {
  outline: none; 
}


.wrapper{
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.wrapper:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #000000;
  opacity: .6;
}

.content-wrapper{
  width: 100%;
  height: auto;
  max-width: 680px;
  display: inline-block;
  position: relative;
  padding: 0px 20px; 
  z-index: 10;
  top: 50%;
  transform: translateY(-50%)!important;
}

.logo{
  width: 80px;
  height: auto;
  display: inline-block;
  margin-bottom: 10px;
  -webkit-transition: all .25s; /* Safari */
  -moz-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

img{
  margin-bottom: 40px;
}

.contact{
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid white;
}

.col{
  float: left;
  text-align: left;
  padding: 0px 20px 20px 20px;
}

.col-2{
  width: 50%;
}

.col:first-of-type{
  text-align: right;
  padding: 0px 20px 20px 0px;
}

@media screen and (max-width: 640px) {

  h1 {
    font-size: 4em;
    line-height: 1em;
    margin-bottom: 20px;
  }

  body {
    font: normal 0.6em/1.6em 'Unbounded', cursive;
  }
  
}

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