@import url('https://fonts.googleapis.com/css?family=Asap:700&display=swap');
body
{
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
	background-color: #37474F;
}
header
{
	background-color: white;
	padding-top:10px;
	padding-bottom: 10px;
}
header h1
{
	font-family: Asap;
	font-size: 48px;
	text-align: center;
}
.score-board
{
	margin: 20px auto;
	border: 2px solid white;
	text-align: center;
	width: 200px;
	font-size: 28px;
	font-family: Asap;
	color: white;
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
}
.badge
{
	font-size: 18px;
	background-color: red;
	padding: 2px 10px;
	margin-left: 20px;
	margin-right: 20px;
}
#user-label
{
	position: absolute;
	top: 15px;
	left: -45px;
}
#comp-label
{
	position: absolute;
	top: 15px;
	right: -55px;
}
.result
{
	text-align: center;
	color: white;
	font-family: Asap;
	margin-top: 30px;
	padding: 10px 20px;
}
.result p
{
	font-size: 36px;
}
.choices
{
	text-align: center;
}
#r
{
	width: 150px;
	height: 150px;
	border: 5px solid white;
	border-radius: 50%;
	margin-left: 30px;
	margin-right: 30px;
}
.choice img
{
	width: 150px;
	height: 150px;
}
.choice
{

	display: inline-block;
}
#p
{
	width: 150px;
	height: 150px;
	border: 5px solid white;
	border-radius: 50%;
	margin-left: 30px;
	margin-right: 30px;
}
#s
{
	width: 150px;
	height: 150px;
	border: 5px solid white;
	border-radius: 50%;
	margin-left: 30px;
	margin-right: 30px;
}
.message
{
	text-align: center;
	margin-top: 50px;
	font-family: Asap;
	font-size: 32px;
	color: white;

}
.choice:hover
{
	background-color: #263238;
	cursor: pointer;
}

.green-glow
{
	border: 5px solid #4dcc7d !important;
	box-shadow: 0 0 10px #31b43a;
}
.red-glow
{
	border: 5px solid #fc121b !important;
	box-shadow: 0 0 10px #d01115;
}
.grey-glow
{
	border: 5px solid #464647 !important;
	box-shadow: 0 0 10px #25292b;
}
.normal-glow
{
	border: 5px solid white !important;
	box-shadow: 0 0 0 white;
}