* {
  padding: 0px;
  margin: 0px;
  font-family: permanent marker, cursive;
}
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #86ad41b2;
}

.main{
  display: flex;
  flex-direction: column;
}
span {
  color: bisque;
}
.main h3 {
  font-size: 19px;
  font-family: arial;
  color: #f3fce3;
}
#game-container {
  text-align: center;
  position: relative;
  background-color: #f3eeb1;
  padding: 20px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(217, 203, 203);
  margin-top: 5px;
}
#game-container canvas {
  border: 1px solid;
  background: linear-gradient(rgb(71, 153, 35), rgb(43, 128, 26));
  border-radius: 4px;
  margin: 20px;
}
.btn {
  width: 100%;
  height: 60px;
  background-color: #487a55;
  border: none;
  border-radius: 10px;
  color: #cdedcc;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s linear;
  margin-top: 30px;
  text-transform: uppercase;
  font-family: ;
}


.btn:hover {
  color: #3b5843;
  background-color: #589868;
}

.btn:disabled {
  cursor: not-allowed;
  background-color: #dc4747;
}

#score-board {
  color: #266b15;
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}
p {
  padding: 0px;
  margin: 0px;
  font-family: permanent marker, cursive;
  font-size: 18px;
  font-weight: 600;
}
