* { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;} 

body { 
	height: 100vh; 
	width: 100vw; 
    background-color: black;
	display: flex; 
	justify-content: center; 
	align-items: center; 
} 

p {
    color: white;
}

a {
    color: blue;
}

.board { 
	height: 85vh; 
	width: 80vw; 
	background-color: black;
    border: 1px gray solid;
} 

.ball { 
	height: 30px; 
	width: 30px; 
	position: fixed; 
	top: calc(50% - 15px); 
	left: calc(50% - 15px); 
    background-color: white;
} 

.paddle { 
	height: 125px; 
	width: 18px; 
	position: fixed; 
    background-color: white;
} 

.paddle_1 { 
	top: calc(7.5vh + 55px); 
	left: calc(10vw + 30px); 
} 

.paddle_2 { 
	top: calc(85vh + 7.5vh - 100px - 55px); 
	right: calc(10vw + 30px); 
} 

.player_1_score { 
	height: 50px; 
	width: 50px; 
	color: white; 
	position: fixed; 
	left: 30vw; 
	margin-top: 30px; 
} 

.player_2_score { 
	height: 50px; 
	width: 50px; 
	color: white; 
	position: fixed; 
	left: 70vw; 
	margin-top: 30px; 
} 

.message { 
	position: fixed; 
	color: white; 
	bottom: 6vw; 
    margin-left: 3vw;
} 
