* {
	box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.content {
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    /*padding: 0 15px;*/
	text-align: center;
}

h1 {
    margin: 130px 0;
    padding: 0;
	width: 100%;
    font-size: 50px;
    text-align: center;
	color: white;
	font-family: "Arial";
	text-shadow: 4px 3px #000000;
}

p {
    margin: 0 0 30px 0;
    font-size: 30px;
    line-height: 1.5;
}

.buttons {
	margin: -50px auto;
    width: 560px;
    /*margin: 0 0 30px 0;*/
	text-align: center;
}

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

.mybutton {
	width: 150px;
	font-family: "Open Sans";
	font-size: 1.3em;
}

.fullscreen-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.blur{
   opacity: 0.9;
}

.mute {
    position: absolute;
    top: 10px;
    left: 10px;
}


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

	h1 {
		font-size: 36px;
	}
	/*
    .fullscreen-bg__video {
        display: none;
    }
	*/
}


/*
Outline bootstrap button
*/
.btn-outline {
    background-color: transparent;
    color: inherit;
    transition: all .5s;
}

.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}