/* =Clearfix (all browsers)--------------------------------*/.clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}/* IE6 */ * html .clearfix {height: 1%;}/* IE7 */*:first-child+html .clearfix {min-height: 1px;}
/* Eric Meyer's Reset Reloaded *//* http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */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, font, 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 {margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;}body {line-height: 1;}ol, ul {list-style: none;}blockquote, q {quotes: none;}/* remember to define focus styles! */:focus {outline: 0;}/* remember to highlight inserts somehow! */ins {text-decoration: none;}del {text-decoration: line-through;}/* tables still need 'cellspacing="0"' in the markup */table {border-collapse: collapse;border-spacing: 0;}

h1, p, body, html {
  margin:0;
  padding:0;
  border: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  scroll: no-scroll;
}

.body{
  font-family: 'vollkornbold', Fallback, serif;
}

#container{
  position: absolute;
  width:100%;
  height: 100%;
  min-height: 100%;
  background-color: #000000;
  color: black;
}

#logodiv{
  float: left;
  position: relative;
  margin-left: 5%;
  margin-top: 3%;
  width: 150px;
  height: 45px;
  font-family: 'vollkornbold', Fallback, serif;
  font-size: 18px;
}

#textdiv{
  position: relative;
  float: right;
  width: auto;
  height: auto;
  margin-right:5%;
  margin-top: 3%;
  font-family: 'vollkornbold', Fallback, serif;
  font-size: 18px;
  color: black;
}

#logo{
  position:relative;
  overflow: visible;
  top: 50%;
  left: 50%;

  width: 474px;
  height: 128px;
  margin-left: -237px;
  margin-top: -128px;

  background-image: url('/logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: fadein 3s;
  -moz-animation: fadein 3s;
  -webkit-animation: fadein 3s; 
  -o-animation: fadein 3s; 

  pointer-events: none;
}

@keyframes fadein {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}
@-moz-keyframes fadein { 
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}
@-webkit-keyframes fadein { 
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}
@-o-keyframes fadein { 
  from {
    opacity:0;
  }
  to {
    opacity: 1;
  }
}

.lightbox {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, .8);
}
