/* CSS Document */
html{
	width: 100%;
	height: 100%;
}
body{
	background-color: #fff;
	color: #000;
	margin: 0;
	padding: 0px;
	width: 100%;
	height: 100%;
}

#master{
	width: 100%;
	height: 100%;	
}
#gameDisplay{
	margin: 0 auto;
	overflow: hidden;
}
#vpImg{
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
}
#appImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	padding: 5px;
}
#menu{
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 1px;
	
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
	
	padding: 5px;
	text-align: center;
}

a{
	color: #8a2629;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
.btn{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	background-color: #8a2629;
    border: none;
	color: #fff;
	font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
	user-select: none;
	padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	text-decoration: none;
	margin: 0 auto;
	
	display: inline-block;
	margin-top: 10px;
}
.btn:hover{
    background-color: #f2e6c6;
    border: none;
    color: #000;
	text-decoration: none;
}

#provided_by{
	padding: 50px 0 60px 0;
	text-align: center;	
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	 font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
	margin: 0 0 10px 0;
}
#vp{
	margin: 4px 0 -8px 0;
	display: block;
	margin: 0 auto;
}

#game-container{
	max-width: none !important;	
}

@media screen and (min-device-width: 760px) and (min-device-height: 1020px) {
	#menu {
		bottom: auto;
		top: 20px;
		left: 250px;
	}
}


.desktop #gameDisplay {
    width: 800px;
    height: 500px;
    position: absolute;
    top: 160px;
    left: 50%;
    margin-left: -400px;
	background-color: #0000a0;
}
.desktop #appImg{
	position: absolute;
	top: 35px;
	left: 50%;
	margin-left: -480px;
	width: 350px;
	height: auto;
}
.desktop #menu{
	bottom: auto;
    top: 40px;
    left: 250px;
    left: 50%;
    margin-left: 267px;
    width: 200px;
    text-align: left;	
}
.desktop #glass{
	position: absolute;
    top: 40px;
    left: 50%;
    margin-left: -40px;
}
.desktop #glass img{
	width: 160px;
	height: auto;
}
.desktop #provided_by {
    position: absolute;
    top: 630px;
    left: 50%;
    margin-left: -197px;
}
.mobile #provided_by{
	position: absolute;
    right: 5px;
    bottom: 0px;
    width: 108px;
}
.mobile #vp{
	width: 100%;
	height: auto;
	margin: 4px 0 0 0;
}
.mobile #glass{
	position: absolute;
    top: 60px;
    left: 5px;
    width: 110px;	
}
.mobile #glass img{
	width: 100%;	
}


/* portrait */
@media (orientation: portrait){
	.mobile #appImg {
		position: absolute;
		top: 0;
		width: 1px;
		padding: 5px;
		left: 50%;
		margin-left: -200px;
	}
	.mobile #glass {
		position: absolute;
		top: 160px;
		left: 50%;
		margin-left: -150px;
		width: 300px;
	}
	.mobile #provided_by{
		font-size: 2rem;
		position: absolute;
		right: auto;
		left: 50%;
		bottom: 0px;
		width: 500px;
		margin-left: -250px;
	}
	.mobile #provided_by img{
		width: 300px;
		margin: 8px auto;
	}
	.mobile #menu{
		font-size: 2.5rem;
		padding: 5px;
		width: 500px !important;
		top: 1200px;
		left: 50%;
		margin-left: -250px;
		bottom: auto;
	}
	.mobile .btn{
		font-size: 2.5rem;
		padding: 0.775rem 1.75rem;
		margin-top: 40px;
	}
}