@import url('https://fonts.googleapis.com/css?family=Amatic+SC:400,700|Roboto+Condensed:400,700|Pacifico');
body {
    margin: 0;
    padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
	color: #FFFFFF;
}

.overlay{
	position:absolute;
	background: url('images/bg.png');
	z-index:1;
}

.content {
	position:absolute;
	bottom:10%;
	left:50%;
    width: 100%;
	margin-left:-60px;
	z-index:2;
}

a{
	color:#fff;	
}

p {
    margin: 0 0 30px 0;
    font-size: 30px;
    line-height: 1.5;
	transform:skewX(-30deg);
	-ms-transform:skewX(-30deg); 
	-webkit-transform:skewX(-30deg);
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 767px) {
    
	.fullscreen-bg {
        background: url('videoframe.png') center center / cover no-repeat;
    }

    .fullscreen-bg__video {
        display: none;
    }
	
}

img { border: 0 none; max-width:100%; height:auto; }