
table {
    margin: auto;
}
td {
    padding: 10px;
}
th {
    font-size: 19px;
}
.instructions-list {
    margin-left: 150px;
}
h1 {
    text-align: center;
}
canvas {
    border: 0px solid white;
    border-radius: 10px;
}
#movementjs-main-canvas {
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    position: static !important;
    width: 1024px; //600
    height: 768px; //400
    background-color: #777;
}
body, html {
    background-color: black;
    color: #fff;
    font-family: 'Trade Winds', cursive;
    font-size: 12px;
-webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
.game_title { color:#fff;text-decoration:none; }
#parent {
    width: 1024px;
    height: 768px;
    position: relative;
    border-radius: 10px;
}
#arena {
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
}
#loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.lifebar {
    width: 200px;
    height: 15px;
    background-color: red;
    position: absolute;
}
#player1LifeBar {
    left: 20px;
    top: 30px;
    border-bottom-right-radius: 15px;
}
#player1LifeBar .life
{
    border-bottom-right-radius: 15px;
    float: left;
}
#player2LifeBar {
    right: 20px;
    top: 30px;
    border-bottom-left-radius: 15px;
}
#player2LifeBar .life
{
    border-bottom-left-radius: 15px;
    float: right;
}
.playerName {
    color: white;
    font-weight: bold;
    font-style: italic;
    font-family: 'Trade Winds', cursive;
    font-size: 14px;
    position: absolute;
}
#player1Name {
    left: 30px;
    top: 10px;
}
#player2Name {
    right: 30px;
    top: 10px;
}
.life {
    width: 100%;
    height: 100%;
    background-color: #3CD400;
}
#utils {
    visibility: hidden;
    z-index: 100;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.manual {
    width: 1024px;
    margin: auto;
    color: #fff;
    font-family: 'Trade Winds', cursive;
    margin-top: 15px;
    font-size: 14px;
}
.manual > div {
    margin-left: 150px;
}
.manual a {
    color: #fff;
}
.github {
    position: fixed;
    top: 0px;
    right: 0px;
    background-image: url(../images/github.png);
    width: 149px;
    height: 149px;
    cursor: pointer;
}
.formContainer {
    margin: auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.loadingLabel {
   text-align:center; 
   margin:auto;
   font-size: 25px;
    font-weight: bold;
    position: absolute;
    left: calc(50% - 70px);
    top: 150px;
}
