@media screen and (max-width: 992px)  {
	#breakoutContainer {
		display: none !important;
	}
}

#breakoutContainer {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 31.25rem;
	margin: 0 auto;
	margin-top: 60px;
}

#breakoutScoreWrapper {
	display: flex;
	justify-content: space-between;
	font-family:Calibri;
	width:800px;
	margin-top: 1rem;
}

#breakoutCanvas {
	background-color: #101010;
}

#breakoutScore {
	font-size: 1rem;
	color: #666;
}

#breakoutBestScore {
	font-size: 1rem;
	color: #666;
}

#breakoutRestartButton {
	font-size: 1.2rem;
	padding: 0.625rem 1rem;
	background-color: #333;
	font-family:Calibri;
	color: #FFF;
	border: none;
	cursor: pointer;
	position: absolute;
}

#breakoutRestartButton:hover {
	background-color: #666;
}

#breakoutBall {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #E62154;
	color: #E62154;
	left: calc(50% - 10px);
	top: calc(50% - 10px);
	display: none;
}

#breakoutPaddle {
	position: absolute;
	width: 70px;
	height: 10px;
	background-color: #ffffff;
	animation: all 75ms linear;
	display: none;
}

#breakoutBricks {
	position: absolute;
	display: none;
}