html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  margin: 0;
  overflow: hidden;
  font-family: arial;
}

#stats {
  position: absolute;
  left: 0;
  top: 0;
}

#hp {
  position: absolute;
  left: 100px;
  top: 20px;
  color: white;
  font-size: 20px;
}

#mp {
  position: absolute;
  left: 100px;
  top: 50px;
  color: white;
  font-size: 20px;
}

#power {
  position: absolute;
  left: 100px;
  top: 80px;
  color: white;
  font-size: 20px;
}

#magic {
  position: absolute;
  left: 0;
  top: 50px;
  color: white;
  font-size: 20px;
}

#gameName {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 20%;
  font-size: 100px;
  color: white;
}

#notification {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  font-size: 100px;
  color: white;
}

#objectives {
  position: absolute;
  right: 4em;
  top: 150px;
  color: white;
  font-size: 20px;
}

#blocker {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
}

#instructions {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

