html {
  --top-spacing: 100px;
  --setup-spacing: 150px;
  scroll-behavior: smooth;
}

body {
  scroll-padding-top: var(--top-spacing);
  margin: 0;

  /*position: absolute;*/
  position: sticky;
  background-color: #251920;
  color: #FFF0F8;
  
  display: block;
  /*margin: auto;*/
  padding-top: 0;
  font-family: Oswald;
  
}

h1, h2, h3, h4, h5, h6 {
  color: #FFF0F8;
  text-shadow: 2px 3px #440022;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Oswald;
}

td {
  text-align: center;
}

.mdl-cell > img {
  display: block;
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
}

a {
  text-decoration: none;
  color: #FF0088;
  transition: 100ms;
}

a:hover {
  text-decoration: underline;
  color: #FFDDEE;
}









.banner {
  background-color: rgba(0,0,0,0);
  position: fixed;
  margin: auto;
  left: 0;
  right: 0;
  top: 0px;
  height: 80px;
  /*box-shadow: 0px 0px 5px 0px #000;*/
  z-index: 50;
  font-weight: bold;
  color: #3A352C;
  font-size: 20px;
}

.banner-left {
  position: absolute;
  height: 80px;
  vertical-align: middle;
  text-align: left;
  margin: auto;
  top: 5;
  left: 25px;
}

.banner-left img {
  height: 70px;
}


.banner-right {
  position: absolute;
  padding-top: 15px;
  padding-right: 25px;
  height: 100%;
  vertical-align: middle;
  text-align: right;
  margin: auto;
  right: 25px;
}

.banner-right img {
  height: 30px;
}

.banner a {
  font-weight: bold;
  color: #FF0088;
}





.infront {
  position: absolute;
  z-index: 40;
}


:root {
  --video-width: 100vw;
  --video-height: 100vh;
  
  @media (min-aspect-ratio: 16/9) {
    --video-height: 56.25vw;
  }

  @media (max-aspect-ratio: 16/9) {
    --video-width: 177.78vh;
  }
}

.bg-video {
  position: relative;
  overflow: hidden;
  width: 100%;

  margin: 0;
  padding: 0;
}

.bg-video__iframe {
  position: fixed;
  top: 50%;
  left: 50%;
  width: var(--video-width);
  height: var(--video-height);
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-filter: blur(1px); /* Safari 6.0 - 9.0 */
  filter: blur(1px);
}






.video-bg {
  /* if you can see this, something has gone wrong */
  background-color: #003366;

/*   Set a specific height 
  min-height: 500px; */

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /*position: absolute;*/
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(1px); /* Safari 6.0 - 9.0 */
  filter: blur(1px);
}


.parallax {
  /* TODO TOGGLE THIS LINE **OFF** TO ENABLE THE VIDEO BG */
  background-image: url("img/crt-filter.gif");
  background-repeat: repeat;

  /*background-color: rgba(0,0,0,0.6);*/

/*   Set a specific height 
  min-height: 500px; */

  /* Create the parallax scrolling effect */


  /*position: absolute;*/
  position: absolute;
  padding: 0px;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: -1;
  width: 100%;
  height: 100%; /*1300px;*/
  -webkit-filter: blur(1px); /* Safari 6.0 - 9.0 */
  filter: blur(1px);
}


.page-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  padding: 10px;
}

.black-box {
  background-color: rgba( 68, 0, 34, 0.7);
  padding: 10px;
}

.center-box {
  text-align: center;
}

.right-middle-box {
  text-align: right;
  vertical-align: middle;
}

.middle-box {
  top: 0;
  bottom: 0;
  margin: auto;
  vertical-align: middle;
}

@keyframes down-anim {
  0%   {color:#FFF0F8; top:0px;}
  50%  {color:#FFCC00; top:20px;}
  100% {color:#FFF0F8; top:0px;}
}

.down-arrow-anim a {
  position: relative;
  animation-name: down-anim !important;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}



.legal-format {
  padding: 40px;
  background-color: #080004;
  font-family: Times !important;
  max-width: 1200px;

  left: 0;
  right: 0;
  margin: auto;
}

.legal-format > p {
  font-family: Times !important;
}

.legal-format > p, li {
  font-size: 20px;
}

.highlight-text {
  color: #FFCC00;
}





.banner-spacer {
  background-color: #251920;
  min-height: 80px;
}


.parallax-container {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  padding: 0px;
}

.mini-parallax {
  /*
  background-image and min-height must be set by another class
  background-image: url("img/park.png");
  min-height: 500px;
  */ 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  left: 0px;
  top: 0px;
  z-index: -1;
  width: 100%;
}

.px-bg-park {
  background-image: url("img/park - blurred - dark.png");
  min-height: 500px;
}

.px-bg-gradient {
  background-color: #251920; /* For browsers that do not support gradients */
  background-image: linear-gradient(#251920 30%, #880044);
}

.px-bg-gradient-dark {
  background-color: #251920; /* For browsers that do not support gradients */
  background-image: linear-gradient(#251920 30%, #440022);
}

.px-bg-outage {
  background-color: #ff0044;
}

.px-bg-flat-dark {
  background-color: #251920; 
}

.px-bg-flat-med {
  background-color: #880044; 
}

.grid-shrinker {
  width: 90%;
  max-width: 1200px;
}



.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}



.arrow-icon { 
  font-size: 48px !important;
}


table {
  border: none;
}





.presskit {
  font-size: 20px;
  line-height: 150%;
}

td > img {
  max-width: 250px;
}

.mdl-cell > a > img {
  display: block;
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
}
