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

body {
	background-color: white;
	position: relative;
	padding: 0px;
	margin: 0px;
}

#container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#logo {
	width: 300px;
	max-width: 100%;
	padding: 0 15px;
	position: absolute;
	top: 50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

#logo img {
	width: 100%;
}

.video {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media only screen and (min-width: 560px) {
  .video.small {
    display: none;
  }
}

@media only screen and (max-width: 560px) {
  .video.big {
    display: none;
  }
}

#social {
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
	text-align: center;
}

#social a {
	color: black;
	font-size: 35px;
}

#social a:hover {
	color: rgba(0,0,0,0.7);
}

#social span {
	margin-right: 30px;
}

#social span:last-child {
	margin-right: 0;
}