*
{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body
{
  background-color: grey;
  background-image: url("/images/brushed_steel.jpg");
}

.time
{
  background: #000;
  width: 300px;
  height: 50px;
  margin: 5px auto;
  position: relative;
  border-top: 1px solid grey;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-left: 1px solid grey;
  padding: 10px;
  color: #2f2;
  font-size: 26px;
}

#time
{
  float: left;
}

#date
{
  float: right;
}

.display
{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 120px;
  background: black;
  border-top: 1px solid grey;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-left: 1px solid grey;
  padding: 10px;
  color: #2f2;
  font-size: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}

.heatingicon
{
  position: fixed;
  bottom: 5px;
  left: 35px;
}

.lightingicon
{
  position: fixed;
  bottom: 5px;
  left: 190px;
}

.temperaturereadout
{
  position: fixed;
  top: 5px;
  right: 0;
  width: 300px;
  height: 120px;
  font-size: 48px;
}

.buttons
{
  position: relative;
  left: 50%;
  top: 1em;
  transform: translateX(-50%);
  width: 640px;
  height: 160px;
  background: #ffffff33;
  border-top: 1px solid white;
  border-right: 1px solid grey;
  border-bottom: 1px solid grey;
  border-left: 1px solid white;
  padding: 10px;
  color: #2f2;
  font-size: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

button
{
  position: relative;
  font-size: 40px;
  border-radius: 8px;
  background-color: #b3ff99;
  color: black;
  border: 2px solid #ecffe6;
  transition-duration: 0.4s;
  margin: 10px;
}

button:hover
{
  background-color: #4CAF50;
  color: white;
}

#dim
{
  background: #000;
  color: #444;
  border: none;
  font-size: 100px;
  width: 780px;
  height: 460px;
}
