html * {
    font-family: 'News Cycle', sans-serif;
}

body,
html {
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: black;
    font-weight: 200;
}

#message {
    position: absolute; 
    top: 0px;
    height: 10px;
    width: 100%;
    color: black;
}

.gameboard {
    position: absolute;
    background: black;
    left: 0px;
    right: 0px;
    top: 30px;
    bottom: 0px;
    display: block;
    box-sizing: border-box;
    padding-top: 15px;
}

.gameboard .energy {
    float: left;
    margin-left: 3px;
    margin-top: 3px;
    width: 130px;
    height: 18px;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    background: black;
    color: black;
    text-align: center;
    z-index: 20;
    overflow: hidden;
}

.gameboard .energy .fill {
    position: relative;
    width: 100%;
    height: 100%;
    background: #E6E6E6;
    border-radius: 10px;
}

.gameboard .energy .words {
    position: absolute;
    color: black;
    top: 0px;
    left: 42px;
}

.gameboard .health {
    float: left;
    margin-left: 3px;
    margin-top: 3px;
    width: 130px;
    height: 18px;
    border: 1px solid red;
    border-radius: 10px;
    background: black;
    color: black;
    text-align: center;
    z-index: 20;
    overflow: hidden;
}

.gameboard .health .fill {
    position: relative;
    width: 100%;
    height: 100%;
    background: Red;
    border-radius: 10px;
}

.gameboard .health .words {
    position: absolute;
    color: black;
    top: 0px;
    left: 42px;
}

.gameover {
    color: white; 
    text-align: center; 
    margin-top: 100px; 
    font-size: 22px;
    color: white;
}

.gameover a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 25px;
}

.gameover a:hover {
    background: white; color: black;
}

#share-container {
  width: 100%;
  padding: 20px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: auto;
  box-sizing: border-box;
  background: #272727;
  padding-bottom: 40px;
  text-align: center;
}

#share-buttons img {
  width: 48px;
  border: 0;
  padding: 5px;
  display: inline-block;
}

#share-buttons a {
    background: none;
    margin: 0;
    padding: 0;
    width: 32px;
}

#spread-the-word {
    font-size: 32px;
    margin: 30px 0px;
    color: white;
}

#title {
    color: white;
    font-size: 30px;
    width: 100%;
    position: fixed;
    top: 5px;
    z-index: 100;
    text-align: center;
}

#subtitle {
    z-index: 100;
    top: 40px;
    position: fixed;
    width: 100%;
    text-align: center;
    color: #E6E6E6;
}

#insta-brake {
    color: #6AB2C3;
    background-color: black;
    padding: 7px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 15px;
}

#insta-brake.active {
    color: black; 
    background-color: #6AB2C3;
}

#diagnostics {
    background-color: black;
    color: #6AB2C3;
    margin-top: 5px;
    margin-left: 5px;
}

#control-information {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: .8;
    background: white;
    display: block;
    padding: 100px;
    text-align: center;
    z-index: 1000;
}

#control-information.hide {
    display: none;
}

.control-information-container {
    border: 1px solid black;
    display: block;
    padding-bottom: 20px;
}

#control-information .lefter, #control-information .righter {
    width: 50%;
    float: left;
    display: block;
}

#control-information .righter {
    float: right;
}

#control-information table {
    margin: 0 auto;
}

#control-information table td:first-child {
    text-align: right;
    font-weight: 600;
}

#direction-heading {
    margin-top: 50px;
}

.directions {
    border: 1px solid black;
    display: block;
    padding: 20px 0px;
}

.ship {
    display: block;
    position: absolute;
}

.bullet {
    width: 2px;
    position: absolute;
    height: 10px;
    background: white;
    left: 10px;
    top: 10px;
}

#audio-icon {
    background: url("img/audioIcon.png") no-repeat;
    background-size: 40px 40px;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 5px;
    left: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    z-index: 1001;
}

#audio-icon.inactive {
    background: url("img/audioIconInactive.png") no-repeat;
    background-size: 40px 40px;
}