* {
  margin: 0 auto;
  font-family: 'Helvetica', sans-serif;
  font: 12px Helvetica, sans-serif;
  color: gold;
  font-weight: bold;
  /*border: 1px solid red;*/
}

body {
  background-color: black;
}

.back {
  background-color: black;
}

.wrapper {
  margin-top: 20px;
  display: block;
  text-align: center;
  width: 450px;
}

.diceSpace {
  height: 50px;
  width: 50px;
  display: inline-block;
}

#enemyImage {
  max-height: 400px;
  background-image: url("../images/enemybg.png");
}

#attack,
#heal {
  display: block;
  width: 75px;
}

#attack {
  float: left;
  background-color: crimson;
  background: linear-gradient(00deg, crimson -100%, black 90%);
}

#heal {
  float: right;
  background-color: darkgreen;
  background: linear-gradient(00deg, lightgreen -100%, black 90%);
}

.character {
  background-color: black;
  width: 300px;
}

p {
  padding: 5px;
}

.enemy {
  display: block;
  margin: 0 auto;
  text-align: center;
  background-color: black;
  width: 300px;
}

.enemy img {
  height: 180px;
  z-index: 50;
  margin-top: 15px;
  border-radius: 10px;
}

.enemy label {
  display: block;
  width: 200px;
}

.enemy span {
  margin-bottom: 20px;
}

#enemyStand {
  position: relative;
  width: 100px;
  height: 20px;
  background-color: saddlebrown;
  margin-top: -5px;
  border-radius: 8px 8px 0 0;
  z-index: 100;
  border: 1px solid gold;
}

#enemyName {
  text-transform: uppercase;
}

.stats {
  float: right;
  padding: 10px 30px;
}

.timer {
  font-size: 20px;
  float: right;
}

.bigdie {
  padding: 25px;
  opacity: 0;
  position: relative;
  font-size: 30px;
  color: green;
  height: 50px;
}

.floatingDamage,
.floatingHeals,
.floatingHit {
  position: relative;
  height: 0px;
  width: 0px;
  z-index: 100;
}

.floatingHeals {
  color: green;
  left: 160px;
}

.floatingDamage {
  color: red;
  right: 150px;
}

.floatingHit {
  color: red;
  right: 220px;
}

#showHeal {
  position: relative;
  top: 30px;
  font-size: 50px;
  color: green;
  height: 100px;
}

#showHit {
  position: relative;
  top: 50px;
  font-size: 50px;
  color: red;
}

#showDamage,
#totalDamage {
  position: relative;
  font-size: 40px;
  color: red;
  top: 10px;
}

#theButton {
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  width: 250px;
  height: 186px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

#theButton:disabled {
  background-color: #555;
  border: none;
  color: white;
}

#theButton:disabled h3 {
  font-size: 20px;
}

#rolledDice {
  display: inline-block;
  padding-top: 5px;
  text-align: center;
}

#healAmount {
  color: green;
}

#clickCount {
  color: white;
}

#damageAmount {
  color: red;
}

h3 {
  font-size: 30px;
}

h1 {
  font-size: 20px;
}

label {
  font-size: 20px;
}

.playerHPBar,
.playerXPBar,
.enemyHPBar {
  display: inline-block;
  /*padding: 1px, 1px;*/
  /*border: 2px white solid;*/
  width: 200px;
  height: 20px;
  vertical-align: middle;
  border: 2px white outset;
  text-align: center;
  color: white;
}

.playerHPBar,
.enemyHPBar {
  background: linear-gradient(90deg, green 50%, crimson 50%);
}

.playerXPBar {
  background: linear-gradient(90deg, black 50%, indigo 50%);
  margin-left: -3px;
}

#diceAvailable {
  display: block;
  width: 100px;
  font-size: 16px;
  text-align: center;
}

input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
}

#Name,
#eName {
  width: 50px;
  text-align: center;
  border: 2px silver outset;
}

.countdownTimerBar {
  height: 50px;
  padding: 10px;
}

.countdownTimerBar > svg {
  height: 100%;
  display: block;
}


/* The Modal (background) */

.tutorialModal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.newGameModal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}


/* Modal Content/Box */

.modal-content {
  background-color: black;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 5px solid lightgreen;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

.modal-content button {
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.modal-content h1 {
  font-size: 30px;
  color: white;
  font-weight: bold;
}

.modal-content ul {
list-style-type: upper-roman;
}

.modal-content li {
  font-size: 18px;
  color: white;
}


/* The Close Button */

.closeTutorialModal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeTutorialModal:hover,
.closeTutorialModal:focus {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}