/* CSS Document */
*, *::after, *::before {
	box-sizing: border-box
}

body {
	margin: 0;
}

.score {
	background: #F80307;
	justify-content: center;
	font-size: 7vh;
	display: flex;
	color: aliceblue
}
.score > * {
	flex-grow: 1;
	flex-basis: 0;
}
.paddle {
position: 50;
position: absolute;
width: 1vh;
height: 18vh;
top: 50vh;

transform: translate(-50%);
background-color: aliceblue
}
.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ball {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateX();
  }
  to {
    transform: translateX(-100);
  }
}