body {
	overflow: hidden;
	user-select: none;
}
canvas {
	width: 100%; 
	height: 100%;
	z-index: 0;
	padding: 0;
	cursor: none;
}
#main{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
#canvascontainer{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
}
#percent{
  position: fixed;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 40px;
  font-family: Roboto;
  font-weight: 700;
}
#play{
  display: none;
  width: 200px;
  height: 100px;
  left: calc(50% - 200px / 2);
  bottom: 20px;
}
#retry{
  display: none;
  width: 200px;
  height: 100px;
  left: calc(50% - 200px / 2);
  bottom: 20px;
}
#next{
  display: none;
  width: 100px;
  height: 70px;
  right: 10px;
  bottom: 20px;
  font-size: 50px;
}
#prev{
  display: none;
  width: 100px;
  height: 70px;
  left: 10px;
  bottom: 20px;
  font-size: 50px;
}
.button{
  position: fixed;
  background-color: #e0e0e0;
  font-family: Roboto;
  font-weight: 700; 
  font-size: 70px;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
}

.button:hover{
  background-color: #bdbdbd;
}

#score{
  position: fixed;
  top: 20%;
  left: 0;
  width: 100%;
  font-family: Roboto;
  font-weight: 700;
  font-size: 100px;
  text-align: center;
  color: #e0e0e0;
}

#level{
  position: fixed;
  top: 20%;
  left: 0;
  width: 100%;
  font-family: Roboto;
  font-weight: 700;
  font-size: 100px;
  text-align: center;
  color: #e0e0e0;
}

#scoreboard {
  position: fixed;
  top: 150px;
  width: 100%;
  height: 200px;
  text-align: center;
}

#name {
  width: 200px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  border: none;
  outline: none;
}

#level-d{
  color: white;
  position: fixed;
  width: 100%;
  text-align: center;
  display: inline-block;
  font-family: Roboto;
  font-weight: 700;
  font-size: 30px;
}

#level-d:hover {
  color: #ddd;
}


#play-arrow {
  width: 50px;
  padding: 20px;
}

#next-arrow, #prev-arrow {
  width: 70px;
}

#retry-icon {
  width: 70px;
  padding: 14px;
}