body {
  font-family: sans-serif;
  background-color: black;
}

button {
  position: fixed;
  right: 50%;
  bottom: 50%;
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
}

h1 {
  text-align: center;
}

body {
    margin: 0;
    padding: 0;
}

.screen {
  z-index: 0;
  background-color: black;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  content: " ";
  overflow: hidden;
  
  background: #16222A;

  background: -webkit-linear-gradient(to left, #16222A , #3A6073);
  background: linear-gradient(to left, #16222A , #3A6073);
  
  background-size: cover;
  background-position: center;
}

#content {
    z-index: -1;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
}

#timer {
    font-size: 8vw;
    color: lightgreen;
    transition: color 300s linear;
}

.odometer-inside::before {
  content: "$";
}

#cube {
  width: 100%;
	height: 800px;
}

#winText {
  color: lightgreen;
  font-size: 7vw;
  font-family: "Wallpoet", monospace;
}

#info {
  display: flex;
  flex-direction: column;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  position: absolute;
  z-index: 2;
  color: white;
  font-size: 1;
  text-align: right;
}