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

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

p {
    color: rgb(0, 255, 0);
}

a {
    color: rgb(255, 255, 255);
}

.board { 
	height: 85vh; 
	width: 80vw; 
	background-image: linear-gradient(to right, #0A140C 0%, #384939 10%, #3E4F3F 20%, #394A3B 30%, #344536 40%, #2A3B2B 50%, #213124 60%, #18291C 70%, #0F2011 80%, #0B1D0D 90%, #081509 100%);
    border: 1px rgb(0, 55, 0) solid;
} 

#middle {
	height: 78vh;
	width: 1px;
	border: 4px green dashed;
	margin: auto;
}

.ball { 
	height: 20px; 
	width: 20px; 
	position: fixed; 
	top: calc(50% - 10px); 
	left: calc(50% - 10px); 
    background-color: rgb(0, 255, 0);
} 

.paddle { 
	height: 125px; 
	width: 18px; 
	position: fixed; 
    background-color: rgb(0, 255, 0);
} 

.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: rgb(0, 255, 0); 
	position: fixed; 
	left: 30vw; 
	margin-top: 30px; 
} 

.player_2_score { 
	height: 50px; 
	width: 50px; 
	color: rgb(0, 255, 0); 
	position: fixed; 
	left: 70vw; 
	margin-top: 30px; 
} 

.message { 
	position: fixed; 
	color: rgb(0, 255, 0); 
	bottom: 6vw; 
    margin-left: 3vw;
} 
