body {
  background-color: black;
  margin: 0;
  font-family: 'Droid Sans Mono', monospace;
  font-size: 30px;
  color: white;
}

#center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.cell {
  padding: 5px;
  width: 90vmin;
}

.status {
  font-size: 15px;
  text-align: right;
  opacity: 0.5;
}

.right{
    float:right;
}

.left{
    float:left;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: underline;
}

#halving_candles {
  border-radius: 15px;
  height: 90vmin;
}

@media screen and (max-width: 950px) {
  body {
    font-size: 15px;
  }
 
  .cell {
    padding: 2px;
  }
  
  .status {
    font-size: 10px;
  }

  #sats_per_dollar {
    border-radius: 5px;
    width: 90vmin;
  }  
}