html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
	margin: 0;
	position: relative;
	
	background: #0C0408;
	color: #fff;
}

img {
	max-width: 100%;
	border-style: none;
	width: 100%;
}

a {
	color: #fff;
}
a:hover, a:visited {
	color: #ccc;
}

[hidden] {
  display: none;
}

.landscape, .portrait {
    display: none;
}

.header {
	position: absolute;
	top: 2rem;
	left: 50%;
	transform: translatex(-50%);
	display: none;
}


.site-footer {
	text-align: center;
}

.terms-container {
	width: 95%;
	margin: 0 auto;
	padding: 5px 0;
}
.terms-container p {
	margin-bottom: 0;
}

@media screen and (max-width: 991px) {
	.mobile-view-hide { display: none; }
	.header { display: block; }
	.header img {
		max-width: 175px;
	}
}

@media screen and (max-width: 650px) {
	.header img {
		max-width: 120px;
	}
}
@media screen and (orientation: portrait) {
	.portrait { display: block; }
}
@media screen and (orientation: landscape) {
	.landscape { display: block; }
}
@media screen and (min-width: 991px) {
	.landscape { display: none; }
	.portrait { display: none; }
}
