body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;

	height: 100vh;
	background-color: #1a1a1a;
	align-items: center;
	color: white
}








p {
	margin: 0;
}

#canvas {
	margin-top: 20px;
	background-color: rgb(7, 74, 42);
	display: block;


	width: min(80vw, 80vh);
	height: min(50vw, 50vh);
	min-width: 200px;
	min-height: 125px;
	/*border: min(3vw, 3vh) solid rgb(116, 85, 35);*/
	border-radius: 20px;
	outline: 5px solid rgb(187, 167, 35);
	outline-offset: 1vw;


}


#btnContainer {
	display: flex;
	flex-direction: row;
	width: 80%;

	justify-content: space-evenly;

}

button {
	top: 20px;
	left: 20px;
	padding: 10px 20px;
	width: 25%;
	min-width: 110px;
	margin-top: 20px;
	margin-bottom: 2%;
	border-radius: 5px;
	background-color: rgb(125, 4, 246) !important;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 1em;
	text-align: center;
	white-space: normal;
	display: inline-block;

}

button:hover {
	transform: scale(1.1);
	box-shadow: 4px 8px 8px 0 rgba(250, 0, 179, 0.2), 2px 6px 16px 0 rgba(255, 255, 255, 0.05);
}

button:hover {
	background-color: #0056b3;
}

#cueBallSettings {
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center;

}
#shootButtons {
	width: 60vw;
	display: flex;
	flex-direction: row;
justify-content: space-evenly;
}

input{
	width: 100px;
	height: 20px;
	margin: 5px;
}
