/*@font-face {
	font-family: "rainyhearts";
	src:  url('fonts/rainyhearts.ttf');
}*/

body {
	/*font-family: "rainyhearts";*/
	/*font-family: 'Monaco', monospace;*/
	background-color: white;
	font-family: 'VT323', monospace;
	-webkit-font-smoothing: none;
 	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

img {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

button {
	font-family: 'VT323', monospace;
}

.actionButton {
	font-size: 30px;
	padding: 10px 15px 13px 15px;
	margin-top: 10px;
	width: 100%;
	text-align: left;	
}

p {
	font-size: 25px;
}


h1 {
	font-size: 30px;
	font-weight: 400;
}

#mainDiv {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	/*height: 75%;*/
	z-index: 1;
	overflow-y: auto;
}

.halfDiv {
	width: 340px;
	margin: 10px;
}

#leftDiv {
	float: left;
}

#rightDiv {
	float: left;
	display: none;
}

#inventoryDiv {
	float: left;
}

#inventory {
	display: none;
	background-color: #e8e8e8;
	padding-top: 2px;
	height: 525px;
}

#inventoryButton {
	width: 340;
	height: 80;
	background-image: url('images/backpack.gif');
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
	background-color: #e8e8e8;
}

.invSlot {
	position: relative;
	float: left;
	width: 80px;
	height: 80px;
	margin: 2.5px;
	/*background-color: #e0e0e0;*/
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center center;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.invSlotText {
	position: absolute;
	top: 45px;
	left: 10px;
}

.invSlotButtonContainer {
	z-index: 2;
	position: absolute;
	width: fit-content;
	height: fit-content;
	top: 60px;
	left: 50px;
	background-color: #e0e0e0;
}

.invSlotButtonContainerText {
	font-size: 22px;
	margin: 2px;	
}

.invSlotButton {
	width: 100%;
	font-size: 25px;
}

#statusDiv {
	float: left;
}

.headlineDiv {
	margin-left: 15px;
}

.statusValue {
	margin-bottom: 10px;
	margin-top: 10px;
}

#feed {
	width: 50%;
	max-width: 600px;
	height: 25%;
	position: fixed;
	bottom: 10px;
}

#feedText {
	max-height: 100%;
	width: 100%;
	overflow-x: hidden;
	position: absolute;
	padding-left: 10px;
	bottom: 0;
	font-size: 25px;
	direction: rtl;
	text-align: left;
}

#actionText {
	min-width: 100px;
	margin-right: auto;
	margin-left: auto;
	max-width: 300px;
	padding: 40px 20px;
	background-color: #e8e8e8;
	font-size: 35px;
}

#actionImage {
	display: none;
	width: 128px;
	margin: 40px;
	margin-right: auto;
	margin-left: auto;
}

#buttonHolder {
	max-width: 340px;
	min-width: 100px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#duoImgDiv {
	display: block;
	width: 265px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 40px;
}

.duoImg {
	width: 128px;
}

#healthValue {
	font-size: 40px;
}

#hpBar {
	display: none;
	position: relative;
	width: 100%;
	height: 60px;
	background-color: #848484;
}

#hpRedBar {
	position: absolute;
	width: 100%;
	height: inherit;
	background-color: #B7B7B7;
}

#hpBarText {
	position: absolute;
	z-index: 1;
	width: 100%;
	text-align: center;
	top: -30px;
	color: white;
	font-size: 40px;
}

#bgDiv {
	z-index: -1;
	background-image: url("images/emptyPlane.png");
}