body {
	background-color: #000;
	padding: 0;
	margin: 0;
}

.buttons {
	display: inline;
	width: 605px;
	position: absolute;
	margin-left: -290px;
	left: 50%;
	top: 20%;
	margin-top: 50px;
	z-index:0;
	text-align: center;
}

.img {
opacity: 1.0;
	filter: alpha(opacity=100);
}

.img :hover {
opacity: 0.8;
	filter: alpha(opacity=80);
}


body,td,th {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #747476;
}
a:link {
	color: #6E7780;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #6E7780;
}
a:hover {
	text-decoration: underline;
	color: #8F979E;
}
a:active {
	text-decoration: none;
	color: #6E7780;
}


h1 {
	color: #cebda1;
	font-size: 6rem;
	font-weight: 400;
	line-height: 1.2;
}


.container {
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	height: 100vh;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}


.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.text-center {

	text-align: center !important;
	
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s; /* Firefox < 16 */
	-ms-animation: fadein 2s; /* Internet Explorer */
	-o-animation: fadein 2s; /* Opera < 12.1 */
	animation: fadein 2s;
}

.embed-responsive {
	background-color: #000;
	border: 1px solid rgb(244, 221, 168);
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.embed-responsive::before {
	display: block;
	content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-21by9::before {
	padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}

.embed-responsive-4by3::before {
	padding-top: 75%;
}

.embed-responsive-1by1::before {
	padding-top: 100%;
}


.logo {
	max-width: 100%;
	height: auto;
}


@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}