@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}
a {
    color: black;
}
a:hover {
    color: hotpink;
}
.lock-screen {
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: fixed;
}

.img {
	-webkit-user-select:none;
	-webkit-touch-callout:none;
}

.body {
	-webkit-user-select: none; /* Chrome all / Safari all */
	-o-user-select: none;
	user-select: none;
	-webkit-touch-callout:none;
}

.centerObject {
    width:750px;
    height:auto;
    position:absolute;
    top:50%;
    left:50%;
    
    margin-left:-375px; /* Half of Width */    
	margin-top:-93px; /* Half of height */    
}
.toucharea{
	position:fixed;
	width:100%;
	height:100%;
	top:0px;
}
.footer {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 12px;
	color:black;
	position:fixed;
	text-align: center;
	width:100%;
	height:10px;
	background-color:white;
	padding:10px;
	bottom:0px;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : portrait) {
	.centerObject {
		width:300px;
		position:absolute;
		top:50%;
		left:50%;
		margin-left:-150px; /* Half of Width */    
		margin-top:-80px; /* Half of height */    
	}
	.footer{
		font-size: 20px;	
			height:30px;
	}
}
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape) {
	.centerObject {

		margin-top:-92px; /* Half of height */    
	}
	.footer{
		font-size: 20px;	
			height:30px;
	}
}


