body {
  background-color: #000;
  color: #fff;
}

.inGame header {
  display: none;
}

.game {
  max-width: 1030px;
  margin: 25px auto;
  text-align: center;
}
.game .very-hard {
  margin-top: 15px;
  padding: 10px;
  background: #111;
}
.game .board {
  border: 1px solid #333;
  margin: 25px 0;
  padding: 25px;
}
.game .board .btn {
  margin: 5px;
  width: 50px;
  height: 50px;
  padding: 0;
}
@media (max-width: 768px) {
  .game .board .btn {
    width: 100px;
    height: 100px;
  }
}
.game .graphic-timer {
  position: relative;
}
.game .graphic-timer .progress {
  position: relative;
  transition: all ease-in 0.3s;
  width: 0%;
  height: 3px;
  z-index: 2;
  background: green;
  margin-bottom: 15px;
}
.game .graphic-timer .progress, .game .graphic-timer:before {
  border-radius: 15px;
}
.game .graphic-timer:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  display: block;
  border-radius: 15px;
  background: #333;
}
.game .stats {
  overflow: hidden;
}
.game .stats p {
  display: inline-block;
  padding: 5px 25px;
}
.game .stats p.disabled-generators {
  color: red;
}
.game .stats p.enabled-generators {
  color: green;
}
.game .stats p.timer {
  color: orange;
}

.custom-form {
  display: none;
}
.custom-form input {
  background: #111;
  border-color: #111;
}

.author {
  color: #222;
  position: absolute;
  text-align: center;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding: 30px 0;
  z-index: 1;
}
.author span {
  color: maroon;
}
.author a {
  display: inline-block;
  color: maroon;
}
.author a:focus, .author a:hover {
  opacity: 0.8;
}