@font-face{
	font-family: LASER;
	src: url(LASER.ttf);
}

body{
	margin:0;
	padding: 0;
	display: grid;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: black;
	overflow: hidden;
}

.landing{
	position:fixed;
	top: 5px;
	padding-left: 5px;
	line-height: 1;
}

.title{
	font-family: LASER;
	color:white;
	font-size: 80px;
}


.scoreboard{
	position: fixed;
	top: 17px;
	right:0px;
	color: lightgray;
	font-family: LASER;
	padding-right: 10px;
	font-size: 20px;
}

#score{
	margin-left: 67px;
}

.add{
	font-family: LASER;
	font-size: 20px;
	color: lightgray;
	right: 10px;
	position: fixed;
	margin-top: 65px;
	opacity: 0;
}




.info{
	position: fixed;
	bottom: 0px;
	right: 0px;
	font-family: LASER;
	color:white;
	margin-top: 200px;
	text-align: right;
	padding-right: 5px;
	padding-bottom: 10px;

}


.center{
position:fixed;
top:0;
left:0;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
	

}

.circle{


}


.small{
	margin-left: 10px;
	width: 20px;
	height:20px;
	background-color:#0ff;
	border-radius: 50%;
	box-shadow: 0px 0px 2px 5px rgba(0, 255, 255, .1), 
	0px 0px 2px 10px rgba(0, 255, 255, .1),
	0px 0px 2px 15px rgba(0, 255, 255, .1);

	  --xA: 0px;
      --yA: 0px;
      --xB: 0px;
      --yB: 0px;

     animation-name: moveCircle;
     animation-duration: 2s;
     animation-iteration-count: 1;
     animation-timing-function: ease;

}

.medium{
	align-items: center;
	width: 40px;
	height:40px;
	background-color:#0f0;
	border-radius: 50%;
	box-shadow: 0px 0px 2px 5px rgba(0, 255, 0, .1), 
	0px 0px 2px 10px rgba(0, 255, 0, .1),
	0px 0px 2px 15px rgba(0, 255, 0, .1);


	  --xA: 0px;
      --yA: 0px;
      --xB: 0px;
      --yB: 0px;

     animation-name: moveCircle;
     animation-duration: 2s;
     animation-iteration-count: 1;
     animation-timing-function: ease;


}

.large{
	margin-left: -10px;
	width: 60px;
	height:60px;
	background-color:#f0f;
	border-radius: 50%;
	box-shadow: 0px 0px 2px 5px rgba(255, 0, 255, .1), 
	0px 0px 2px 10px rgba(255, 0, 255, .1),
	0px 0px 2px 15px rgba(255, 0, 255, .1);


	  --xA: 0px;
      --yA: 0px;
      --xB: 0px;
      --yB: 0px;

     animation-name: moveCircle;
     animation-duration: 2s;
     animation-iteration-count: 1;
     animation-timing-function: ease;

}


 @keyframes moveCircle {
      0% {
        transform: translate3d(var(--xA), var(--yA), 0);
      }
      100% {
        transform: translate3d(var(--xB), var(--yB), 0);
      }
    }


  a{
  	color: lightseagreen;
  }


video{
	position:fixed;
  display: none;
}








