| body {
  font-family: Sans-Serif;
}
body.dark {
  background: #111;
  color: #eee;
}
#buildings-area {
  width: 20%;
}
#tasty-micro {
  color: #ddd;
  background-color: #211;
  width: 100px;
  height: 75px;
}
.building-button {
  display: block;
  width: 100%;
  height: 150px;
  background-color: #222;
  color: #eee;
  border: 5px;
  border-color: #666;
  border-style: solid;
}
.building-button .building-button-name {
  font-size: 24px;
  position: relative;
  left: 25%;
  top: 10%;
}
.building-button .building-button-cost {
  font-size: 18px;
  position: relative;
  left: 25%;
  top: 40%;
}
.building-button:hover {
  background-color: #333;
}
.building-button:active {
  border-color: #333;
  background-color: #111;
}
 |