* {
  margin: 0;
  padding: 0;
}

body {  
  width: 1280px;
  height: 800px;
  background-image: linear-gradient(94.3deg, rgb(255, 158, 158) 10.9%, rgb(154, 252, 255) 87.1%);
}
#canvas {
  border: 1px solid white;
  width: 600px;
  height: 600px;
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%);
  cursor: none;
}

.level {
  font-size: 3.5vw;
  font-weight:bolder;
  position: absolute;
  left: 43.5%;
  background: linear-gradient(to right, #5AEECF, #FF9B9B);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  top: 10%;
}

.score {
  font-size: 4vw;
  font-weight:bolder;
  position: absolute;
  left: 42%;
  background: linear-gradient(to right, #5AEECF, #FF9B9B);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  top: 4%;
}

section {
  position: absolute;
  left: 340px;
  top: 155px;
  height: 600px;
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#box {
  list-style: none;
  position: relative;
  z-index: 3;
  width: 600px;
  height: 600px;
  background-color: rgba(255, 255, 255, .1);
  padding: 0px 30px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
}

input {
  position: relative;
  height: 40px;
  width: 50%;
  margin-top: 15%;
  margin-left: 25%;
  outline:none;
  border-image: linear-gradient(to right, #5AEECF, #FF9B9B) 1 10;
  border-width: 5px;
  box-shadow: 10px 10px 8px #888888;
  -moz-box-shadow:0 0 10px ;
  -webkit-box-shadow:0 0 10px white;
  color: dimgrey;
  font-size: 20px;
}

input:hover {
  box-shadow: 10px 10px 8px #888888; 
  -moz-box-shadow:0 0 30px ;
  -webkit-box-shadow:0 0 30px white;
}

#box p {
  color: #fff;
  display: block;
  text-align: center;
  margin-top: 15%;
  font-size: 2vw;
}

.button {
  width: auto;
  text-align: center;
  align-items: center;
  position:absolute;
  margin-left: 8%;
  padding: 20px 10%;
  margin-top: 5%;
  width: 7%;
  height: 25px;
  border: 0;
  background-size: 200% auto;
  border-radius: 8px;
  color: #fff;
  outline: none;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  transition: ease .4s;
  text-decoration: none;
}

.button:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

#button1 {
  background-image: linear-gradient(to right, #5AEECF 0%, #C4FFF3 51%, #5AEECF 100%);
}

#button2 {
  background-image: linear-gradient(to right, #FF9B9B 0%, #FFCECE 51%, #FF9B9B 100%);
  margin-left: 65%;
}

#buttonStart {
  background-image: linear-gradient(to right, #5AEECF 0%, #ffffff 51%, #FF9B9B 100%);
  height: 20px;
  margin-left: 32%;
}

#Restart2 {
  background-color: rgba(255, 255, 255, 0);
  height: 650px;
  width: 1280px;
  top: 150px;
  text-align: center;
  align-items: center;
  position:absolute;
}

#Restart {
  background-image: linear-gradient(to right, #FF9B9B 0%, #ffffff 51%, #5AEECF 100%);
  margin-top: 18%;
  left: 370px;
  position:absolute
}

#Leveldown {
  background-image: linear-gradient(to right, #5AEECF 0%, #C4FFF3 51%, #5AEECF 100%);
  margin-top: 30%;
  width: 1%;
  padding-left: 80px;
  padding-right: 110px;
}

#Levelup {
  background-image: linear-gradient(to right, #FF9B9B 0%, #FFCECE 51%, #FF9B9B 100%);
  margin-top: 30%;
  margin-left: 76%;
  width: 1%;
  padding-left: 80px;
  padding-right: 110px;
}