:root {
  --colro: rgb(22, 181, 141, 255);
}

* {
  padding: 0;
  margin: 0;
}

body {
  background-color: black;
  color: white;
  font-family: "Kode Mono", monospace;
  position: relative;
  overflow: hidden;
  color: #fff6c1;
}

canvas {
  user-select: none;
}

button {
  position: absolute;
  top: 80%;
  left: 50%;
  translate: -50% -50%;
  width: 300px;
  height: 100px;
  border: none;
  font-size: 24px;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.7);
  color: #fff6c1;

  cursor: pointer;
  border: solid black 1px;
}
div {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(10, 10, 10, 0.75);
  width: 100vw;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  font-size: 32;
  font-weight: 700;
  color: #fff6c1;
}
#scoreElement {
  font-size: 24;
}
#scoreBoard {
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -50%;
  width: 250px;
  height: 50%;
  border-radius: 10px;
  
}
#restartBtn {
  width: 100px;
  height: 50px;
  background: #fff6c1;
  color: #1eb0fb;
  position: absolute;
  top: 55%;
  left: 50%;
  translate: -50% -50%;
  font-weight: 600;
}
.none {
  display: none;
}
