* {
  box-sizing: border-box;
}

html {
  background: url(images/view.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

html, body {
  padding: 0;
  margin: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.container {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  position: absolute;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.container-inner {
  text-align: center;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
}

  .logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
  }

  .video-embed {
    margin: 40px auto 0;
    max-width: 640px;
    position: relative;
  }
  
  .video-embed:after {
    content: '';
    display: block;
    padding-bottom: 56.25%;
  }
  
  .video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .contact {
    margin-top: 40px;
    margin-bottom: 20px;
  }



p {
	font-family: georgia;
	font-size: 13px;
	color: #cdc3b6;
}
h1 {
	font-family: georgia;
	line-height: 130%;
	display:inline;
	font-size: 13px;
	color: #b0c9d1;
}
a {
  color: #cdc3b6;
	outline: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover, a:active {
	text-decoration: none;
	outline: none;
  color: #ff6a4c; 
}
