html, body {
  margin: 0;
  padding: 0;
  background-color: rgb(250, 226, 146);
  overflow: hidden;
}

#game {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;

  position: fixed;
  right: 5%;
  top: 8%
}

#canvas {
  position: relative;
  
 
}

#defaultCanvas0 {
  display: inline;
  box-shadow: 9px 9px 1px rgba(0, 0, 0, 0.25);
  margin: 10px;
}

.button {
    outline: none;
    box-shadow: 5px 5px 1px rgba(0, 0, 0, 0.3);

    border-radius:9px;
    border:0px;
    display:inline-block;
    cursor:pointer;
    font-family:Verdana;
    font-size:17px;
    padding:14px 33px;
    color:aliceblue;
    margin: 5px;
    text-decoration:none;
}

#startButton {
  background-color: rgb(10, 143, 48);
 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}


#toolButton {
  background-color:#f89853;
  padding: 10px;
}

#start {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50%;
}

#doneButton {
  background-color: rgb(218, 218, 218);
  cursor: default;
}

#eraseButton {
  background-color:#d45050;
  padding: 11px;
  padding-left: 12px;
  padding-right: 12px;
}

.text {
  font-family: "Lucida Console", Monaco, monospace;
font-size: 30px;
letter-spacing: -0.4px;
word-spacing: 2px;
color: #000000;
font-weight: 700;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}

.value {
  display: flex;
  margin: 0px;
  justify-content: center;

  font-family: "Lucida Console", Monaco, monospace;
  font-size: 50px;
  letter-spacing: -0.4px;
  word-spacing: 2px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
}

#bonus {
  font-size: 25px;
  margin: 0px;
}

#UI{
  display: flex;

  flex-direction: column;
  flex-wrap: nowrap;

  position: fixed;
  left: 6%;
  top: 20%

}

#stats{
  display:flex;
  margin-left: 5%;
}

#info-value {
  display: flex;
  margin: 0px;
  justify-content: center;

  font-family: "Lucida Console", Monaco, monospace;
  font-size: 65px;
  letter-spacing: -0.4px;
  word-spacing: 2px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
}

#timer {
  margin-left: 20%;
}

#loading {
  display: flex;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 100px;
  justify-content: center;
  margin-top: 25%
}


