﻿body { 
  background-color: #fff;
  }
  
.logo { 	
    margin: 0 auto;
     }

img {
	background-color: #FFFFFF;
	box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.19);
	opacity: 0.9;
}

 
/* ============================================================
  BASE OVERRIDES
 ============================================================ */
 
.wrapper{
  max-width: 640px;
}

/* ============================================================
   BACKGROUND VIDEO
============================================================ */

#container {
  position: absolute;
  margin: 0 0 10px 0;
  border: 5px solid red;
  height: 1080px;
  overflow: hidden;
}

#video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 1920px;
  height: auto;
  transform: translate(-50%, -50%);
}

#content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 10px 10px;
  text-align: center;
}
#content h2,
#content p,
#content a {
  color: red;
  text-shadow: -1px 1px 4px rgba(0, 0, 0, 0.6);
}
#content h2 {
  font-family: "Yanone Kaffeesatz", Yanone Kaffeesatz Light;
  font-size: 28px;
  }
#content p {
  margin-bottom: 20px;
 }
#content a {
  display: inline-block;
  margin: 0;
  padding: 10px 10px;
  font-family: "Yanone Kaffeesatz", Yanone Kaffeesatz Light;
  border: solid 1px green;
  transition: background 0.3s, color 0.3s, text-shadow 0.3s;
}
#content a:hover {
  background-color: #fff;
  color: red;
  text-shadow: none;
}

@media all and (min-width: 640px) {
  #container {
    height: 480px;
  }

  #video {
    width: 640px;
  }

  #content {
    padding: 10px 10px;
  }
  #content h2 {
    font-size: 18px;
  }
  #content p,
  #content a {
    font-size: 14px;
  }
}

@media all and (min-width: 1080px) {
  #container {
    height: 1080px;
  }

  #video {
    width: 1920px;
  }

  #content {
    padding: 20px 20px;
  }
  #content h2 {
    font-size: 28px;
  }
  #content p,
  #content a {
    font-size: 20px;
  }
}
