html {
    background: url('../img/bgclean.png') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
body {
    color: silver;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    text-align: center;
}
footer {
    display:block;
}

footer a {
    color:yellow;
}

.entryHeader {
    font-weight: bold;
    font-size: 1.1em;
}

.entry {
    width: auto;
    height: auto;
    font-weight: normal;
    font-size: 1em;
    text-align: center;
    margin: 5px;
    border: tomato;
    border-style: outset;
}

.npc {
  background: tomato;
  padding: 0px;
  width: 200px;
  height: auto;
  margin-top: 5px;
  
  line-height: 50px;
  color: white;
  font-weight:normal;
  font-size: 2em;
  text-align: center;
  max-width: 200px;
}

.npc span {
  max-width: 200;
  flex-basis: auto;
  flex-grow: 1;
  overflow: hidden;
  display: block;
}

.stun, .phys, .armor {
    background: tomato;
    padding: 0px;
    width: auto;
    height: auto;
    margin-top: 0px;
    line-height: 20px;
    color: white;
    font-weight: lighter;
    font-size: smaller;
    text-align: center;
}

.wound {
    font-size: 1em;
}

.checkbox {
  padding: 0px;
  line-height: 50px;
  width: 50px;
  height: auto;
}

 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}