body {
  background-color: #0a0a23;
  font-family: "Roboto Mono", monospace;
}

#title {
  font-family: "Grenze Gotisch", serif;
  font-size: 47px;
  color: #f0d89c;
  padding: 10px;
  background: linear-gradient(to bottom, #cfc09f 27%, #ffe38f 40%, #784809 78%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: fill;
  margin-top: 20px;
  margin-bottom: 20px;
}

#text {
  color: #f0d89c;
  padding: 10px;
}

#game {
  max-width: 600px;
  max-height: 3000px;
  margin: 30px auto 0px;
  padding: 10px;
}

#frame{
    border: 1px solid #f0d89c;
    border-top: 0px;
    padding: 5px;
}


#stats {
  color: #f0d89c;
  font-size: smaller;
  border: 1px solid #f0d89c;
  padding: 15px;
}


.stat {
  padding-right: 10px;
}

#controls {
  padding: 10px;
}

button {
  font-family: "Roboto Mono", monospace;
  cursor: pointer;
  color: #f0d89c;
  background-color: #3645ec;
  background-image: linear-gradient(#3645ec, #5222e3);
  border: 2px solid #3d20e1;
  width: 100%;
  text-align: left;
  padding: 5px;

}

button:hover {
  color: white;
}

#proceed {
  display: none;
  font-weight: bold;
  color: #f0d89c;
}

@media (max-width: 500px) {
  body {
  font-size: 90% ;
}

#title {
  font-size: 25px;
}

button {
  padding: 8px;
}

button:hover {
  color: #f0d89c;
}

.stat {
  display: block;
}

}