
html, body {
	margin: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: black;
	background: radial-gradient( #e03434 0%, #820404 100%);
	font-family:'Questrial','Noto Serif SC' ;
}

.filter {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #681010;
	animation: colorChange 10s ease-in-out infinite;
	animation-fill-mode: both;
	mix-blend-mode: overlay;
}

@keyframes colorChange {
	0%, 100% {
		opacity: 0;
	}
	50% {
		opacity: .9;
	}
}

.landscape {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 100%;	
	background-image: url('');
	background-size: 1000px 250px;
	background-repeat: repeat-x;
	background-position: center bottom;
}
.content{
	-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
user-select: none;
	text-align: center;
	color: #fcd578;
    position: absolute;
	width: 80%;
    left: 50%;
    top: 40%;
	transform: translate(-50%,-50%);
	z-index:9999
}

@media (min-width:720px){
	
	.content{width: 520px;}
}
.content .title{
	margin: 15px 0;
}

.content .title img{width: 100%; height: auto;}


nav a{
	display:block;  
	background: rgba(249, 225, 154, 0.7); 
	border-radius: 40px;
	color: #7b0a09;
	text-align: center;
	margin: 6% auto;
	padding: 6% 0;
	font-size: 16px;
	text-decoration: none;
   }
nav a:hover{background: #7b0a09; color: #fff;}

nav a span{display: block; font-size: 25px;line-height: 200%; }


.copy{ width: 100%; text-align: center; position: absolute; bottom: 5%; color: #fcd578;}
.copy span{display: block;}
.copy a img{width: 50px; height: auto;}

