body
{
	background-color: lightblue;
}
/*
div
{
	height: 200px;
	width: 200px;
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;

}*/
.header_text
{
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: red;
}
#score_text
{
	font-family: "Permanent Marker";
	font-size: 50px;
	font-weight: bold;
	text-align: center;
}
.container
{
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border: 3px solid;
	border-radius: 10px;
	color: green;
	box-shadow: inset 0 0 20px 10px black, 0 0 10px 10px green;
}
#button_1
{
	height: 200px;
	width: 200px;
	border: 10px solid;
	border-radius: 50%;
	background-color: red;
	cursor: pointer;
}
#button_2
{
	height: 200px;
	width: 200px;
	border: 10px solid;
	border-radius: 50%;
	background-color: yellow;
	cursor: pointer;
}
#button_3
{
	height: 200px;
	width: 200px;
	border: 10px solid;
	border-radius: 50%;
	background-color: green;
	cursor: pointer;
}
#button_4
{
	height: 200px;
	width: 200px;
	border: 10px solid;
	border-radius: 50%;
	background-color: blue;
	cursor: pointer;
}
.down_container
{
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#reset_button
{
	font-size: 25px;
	width: 100px;
	height: 50px;
	border: 6px solid;
	border-radius: 20px;
	cursor: pointer;
	justify-content: center;
}