body {
  text-align: center;
  margin: 0;
  background-color: black;
  color: white;
  font-family: 'Audiowide', cursive;
}

h1 {
  position: relative;
  margin: 5px;
  margin-top: 0px;
}

h2, h3, h4 {
  /* font-family: 'Open Sans', sans-serif; */
}

button {
  position: relative;
  width: 75%;
  height: auto;
  /* font-family: 'Open Sans', sans-serif; */
}

.high-scores {
  display: absolute;
  float: right;
  top: 0;
  right: 0;
  color: rgb(255, 255, 255);
  border: 5px solid rgb(255, 0, 255);
  border-top: 0;
  border-right: 0;
  /* border-bottom: 0; */
  margin: 0;
  padding: 0 11px;
  background-color: rgba(0, 0, 0, 0.6);
  width: 18%;
  height: 100%;
  text-align: center;
}
  #player-one {
    display: relative;
    padding-top: 10px;
    border: 5px solid rgb(255, 0, 255);
    margin: 0;
    padding: 8px 11px;
  }
    #player-one-score {
      display: absolute;
      color: 'yellow';
    }
  #player-two {
    display: absolute;
    padding-top: 10px;
    border: 5px solid rgb(255, 0, 255);
    border-top: 0;
    margin: 0;
    padding: 8px 11px;
  }
    #player-two-score {
      display: absolute;
      color: 'yellow';
    }

.lives-meter {
  /* color: green; */
}

.missile-meter {
  /* color: green; */
}

.oil-meter {
  /* color: green; */
}

.game-realm {
  /* float: right; */
  position: absolute;
  top: 0;
  width: 99%;
  height: 83%;
  background-image: url('../images/spy-hunter_title_dos.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 5px solid rgb(255, 0, 255);
}
  .game-interact {
    /* float: left; */
    position: absolute;
    top: 0;
    width: 18%;
    height: 100%;
    border: 5px solid rgb(255, 0, 255);
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    background-color: rgba(0,0,0,0.6);
    text-align: center;
  }

  .game-container {
    position: absolute;
    width: 64%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
    #game-canvas {
      /* border: 5px solid rgb(255, 255, 0); */
      background-color: rgba(0, 0, 0, 0.8);
      padding: 0;
      margin: auto;
      display: block;
    }

.game-comms {
  position: absolute;
  bottom: 0;
  width: 99%;
  height: 13%;
  border: 5px solid rgb(0, 255, 255); */
  vertical-align: center;
  padding: 0 0 10px 0;
}
  .game-comms h1 {
    margin-top: 5px;
  }


/* Free Fancy Buttons Library from Internet*/
.centered {
margin:50px auto;
text-align:center;
}

.button::-moz-focus-inner{
border: 0;
padding: 0;
}

.button{
display: inline-block;
/* display: inline; */
zoom: 1;
padding: 4px;
margin: 2px;
cursor: pointer;
border: 1px solid #bbb;
overflow: visible;
font: bold 13px 'Audiowide', arial;
font-family: 'Audiowide', cursive;
text-decoration: none;
white-space: nowrap;
color: #555;

background-color: #ddd;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
background-image: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
background-image: -ms-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
background-image: linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));

-webkit-transition: background-color .2s ease-out;
-moz-transition: background-color .2s ease-out;
-ms-transition: background-color .2s ease-out;
-o-transition: background-color .2s ease-out;
transition: background-color .2s ease-out;
background-clip: padding-box; /* Fix bleeding */
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
text-shadow: 0 1px 0 rgba(255,255,255, .9);

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.button:hover{
background-color: #eee;
color: #555;
}

.button:active{
background: #e9e9e9;
position: relative;
top: 1px;
text-shadow: none;
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
}

.button[disabled], .button[disabled]:hover, .button[disabled]:active{
border-color: #eaeaea;
background: #fafafa;
cursor: default;
position: static;
color: #999;
/* Usually, !important should be avoided but here it's really needed :) */
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}

/* Smaller buttons styles */
.button.small{
padding: 4px 12px;
}

/* Larger buttons styles */
.button.large{
padding: 12px 30px;
text-transform: uppercase;
}

.button.large:active{
top: 2px;
}

/* Colored buttons styles */
.button.green, .button.red, .button.blue {
color: #fff;
text-shadow: 0 1px 0 rgba(0,0,0,.2);
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0)));
background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
}

/* */
.button.green{
background-color: #57a957;
border-color: #57a957;
}

.button.green:hover{
background-color: #62c462;
}

.button.green:active{
background: #57a957;
}

/* */
.button.red{
background-color: #ca3535;
border-color: #c43c35;
}

.button.red:hover{
background-color: #ee5f5b;
}

.button.red:active{
background: #c43c35;
}

/* */
.button.blue{
background-color: #269CE9;
border-color: #269CE9;
}

.button.blue:hover{
background-color: #70B9E8;
}

.button.blue:active{
background: #269CE9;
}

/* */
.green[disabled], .green[disabled]:hover, .green[disabled]:active{
border-color: #57A957;
background: #57A957;
color: #D2FFD2;
}

.red[disabled], .red[disabled]:hover, .red[disabled]:active{
border-color: #C43C35;
background: #C43C35;
color: #FFD3D3;
}

.blue[disabled], .blue[disabled]:hover, .blue[disabled]:active{
border-color: #269CE9;
background: #269CE9;
color: #93D5FF;
}