html, body {
	width: 100%;
	height: 100%;
}

body {
	background-color: #ffffff;
	margin: 0;
	overflow: hidden;
	font-family: arial;
	-user-select: none;
}

#blocker {

	position: absolute;

	width: 100%;
	height: 100%;

	background-color: rgba(0,0,0,0.5);

}

*.unselectable {
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-user-select: none;
}

#instructions {

	width: 100%;
	height: 100%;

	display: -webkit-box;
	display: -moz-box;
	display: box;

	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	box-orient: horizontal;

	-webkit-box-pack: center;
	-moz-box-pack: center;
	box-pack: center;

	-webkit-box-align: center;
	-moz-box-align: center;
	box-align: center;

	color: #ffffff;
	text-align: center;

	cursor: pointer;

}

#instructions span {
	font-size: 40px;
}

#name {
	position: absolute;
	left: 12%;
	bottom: 20%;
	color: #fff;
	font-size: 400%;
}

#item-box {
	position: absolute;
	bottom: -10px;
	right: 0px;
}

#item-pic img {
	max-width: 100%;
	height: auto;
}

#portrait-box {
	position: absolute;
	right: 10%;
	bottom: 20%;
}

#portrait img {
	max-width: 100%;
	height: auto;
}

#dialogue-box {
	background-color: rgba(0,0,0,0.5);
    border: 3px solid #fff;
    
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
    -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.25);
    position: absolute;
    width: 80%;
	height: 15%;
	right: 10%;
	bottom: 5%
}


#dialogue-box-text {
	padding: 20px;
	color: #eee;
	font-size: 150%;
}
