body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	overflow-x: hidden;
	background-color: #afafaf;
}
.header{
	overflow: hidden;
	position: relative;
	height: 100vh;
	width: 100vw;
	margin-top: -25px;
	text-align: center;
	justify-content: center;
}
h1 {
	z-index: 2;
    position: relative;
    top: calc( 100vh - 95% );
    font-weight: 600;
    font-size: 1.5em;
    letter-spacing: 30px;
    line-height: 40px;
    text-shadow: 0px 2px 3px rgba(255,255,255,0.5), 0px -1px 1px rgba(0,0,0,.3);
    background: -webkit-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: -moz-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
nav{
	z-index: 2;
    position: relative;
    top: calc( 100vh - 32% );
}
ul {
  list-style: none;
}
nav ul li{
	display: inline-block;
    height: 40px;
    line-height: 43px;
    padding-right: 50px;
    font-size: 1rem;
    font-weight: 600;
	text-shadow: 0px 2px 3px rgba(255,255,255,0.4), 0px -1px 1px rgba(0,0,0,.3);
    background: -webkit-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: -moz-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.titulo {
    z-index: 2;
    position: absolute;
    top: calc( 100vh - 35% );
    height: 250px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
.titulo span {
    position: relative;
    margin-top: 50px;
    display: block;
    font-weight: 600;
    font-size: 1.2em;
    letter-spacing: 15px;
    line-height: 40px;
    text-shadow: 0px 2px 3px rgba(255,255,255,0.6), 0px -1px 1px rgba(0,0,0,.2);
    background: -webkit-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: -moz-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pie {
    z-index: 2;
    position: absolute;
    bottom: 0;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    font-weight: 600;
    font-size: 0.6em;
    letter-spacing: 5px;
    line-height: 40px;
    text-shadow: 0px 2px 3px rgba(255,255,255,0.4), 0px -1px 1px rgba(0,0,0,.3);
    background: -webkit-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: -moz-radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    background: radial-gradient(ellipse farthest-corner at center center, #31332D 0%, #777C7C 50%, #4E7685 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.creditos{
	padding-left: 100px;
}
.fecha {
    letter-spacing: 2px;
}
.video-wrapper{
	overflow: hidden;
	text-align: center;
}
video {
	object-fit: contain;
	overflow-x: hidden;
	width: 100vw;
	height: calc( 100vh - 15% );
	position: absolute;
	top: 0;
	left: 0;
	clip-path: inset(1px 1px);
}
video:focus { 
	outline:none; 
}
@media only screen and (min-width: 768px) {
	video {
		object-fit: cover;
		height: calc( 100vh - 45% );
		margin-top: 20%;
	}
	.pie {
		bottom: 10%;
	}
} 
@media only screen and (min-width: 992px) {
	video {
		object-fit: contain;
		height: calc( 100vh - 15% );
		margin-top: 0;
	}
	.pie {
		bottom: 0;
	}
} 
@media only screen and (min-width: 768px) and (orientation: landscape){
	video {
		object-fit: contain;
		height: calc( 100vh - 15% );
		margin-top: 5%;
	}
	.pie {
		bottom: 0;
	}
}
@media only screen and (min-width: 992px) and (orientation: landscape){
	video {
		object-fit: contain;
		height: calc( 100vh - 15% );
		margin-top: 0%;
	}
	.pie {
		bottom: 0;
	}
} 