body {
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    color: white;
    background-color: black;
}

section {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
}

/*div#container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}*/

div#screenElements {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

canvas#canvas {
    /*image-rendering: pixelated;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;*/
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Barra de vida */

div#lifeBar {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    height: 30px;
    width: 200px;
    background-color: rgb(120, 120, 120);
    border: solid black 2px;
    border-radius: 5px;
    z-index: 0;
}

div#lifeBar div#lifeBar1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: red;
    border-radius: 3px;
    transition: all 0.9s ease-out;
}

div#lifeBar div#lifeBar2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 223, 0);
    border-radius: 3px;
    transition: all 0.3s linear;
}

div#lifeBar p#lifePercentText {
    font-weight: bold;
    color: black;
    transform: translateY(-50%);
}

/* Opções 

div#options {
    display: none;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
    width: 50%;
    font-size: 20px;
    text-align: left;
    background-color: rgb(90, 90, 90);
    border: solid black 2px;
    border-radius: 8px;
}

table {
    position: relative;
    width: 100%;
}

th {
    text-align: center;
    border: solid black 2px;
    vertical-align: middle;
    height: 30px;
    width: 50%;
}

div#options button {
    position: absolute;
    padding: 5px;
    bottom: -35px;
    color: black;
    background-color: rgb(238, 238, 238);
    border: solid black 2px;
    border-radius: 8px;
    transition: all 0.5s;
}

div#options button:hover {
    background-color: rgb(200, 200, 200);
}

div#options button#saveButton {
    right: 5px;
}

div#options button#cancelButton {
    right: 65px;
}

div#options select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgb(215, 215, 215);
    border: none;
    outline: none;
    text-align: center;
    border-radius: 4px;
    padding: 3px;
    transition: all 0.5s;
}

div#options select option {
    font-weight: bold;
}