/*
Author: WebThemez
Author URL: http://webthemez.com 
*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,800,600); 
@import url(https://fonts.googleapis.com/css?family=Audiowide);
@font-face {
	font-family: scorchedEarth;
	src: url(../fonts/ScorchedEarth.otf);
  }
body {
	color:#FFF;
	font-family: 'Open Sans', sans-serif;
	height:100%;
	width:100%;
	margin:0;
	background: #000000;
}

h1 {
	font-size:40px;
	/* text-align:center; */
	font-weight: 400;
	font-family: 'scorchedEarth';
	text-shadow: 0px 1px 1px rgba(12, 11, 11, 0.56);
}
#large-header {
    position: relative;
    height: 100vh; /* Adjust the height as needed */
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will ensure that the aspect ratio is maintained while covering the entire area */
}

.content {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust the positioning to be in the center */
    text-align: center; /* Align text and image in the center */
    color: white; /* Adjust text color as needed */
}

.content img {
    max-width: 100%; /* Make sure the image does not overflow */
    height: auto; /* Maintain aspect ratio */
    /* margin-bottom: 20px; */
}

.button-container {
    margin-bottom: 20px;
}

.button-container button {
    background-color: #EC6423; /* Bootstrap primary color for example */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-container button:hover {
    background-color: #F2B248; /* Darker shade for hover effect */
}