*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Asap, sans-serif;
}

body{
	background-color: #24272E;
}

header{
	background: #ccc;
	padding: 28px;
}

header > h1{
	color: #24272E;
	text-align: center;
}

.score-board{
	border: 3px solid #ccc;
	width: 200px;
	margin: 20px auto;
	color: #ccc;
	font-size: 46px;
	border-radius: 4px;
	text-align: center;
	padding: 15px 20px;
	position: relative;
}

.badge{
	background: #E2584D;
	color: #ccc;
	font-size: 14px;
	padding: 2px 18px;
}

#user-label{
	position: absolute;
	top: 30px;
	left: -35px;
}

#computer-label{
	position: absolute;
	top: 30px;
	right: -35px;
}

.result{
	font-size: 40px;
	color: #ccc;
}

.result > p{
	text-align: center;
	font-weight: bold;
}

.choices{
	margin: 50px 0;
	text-align: center;
}

.choice{
	border: 4px solid #ccc;
	border-radius: 50%;
	margin: 0 15px;
	padding: 18px;
	display: inline-block;
	transition: all 0.3s ease;
}

.choice:hover{
	cursor: pointer;
	background: white;
}

#action-message{
	text-align: center;
	color: #ccc;
	font-weight: bold;
	font-size: 20px;
}

.green-glow{
	border: 4px solid #4dcc7d;
	box-shadow: 0 0 10px #31b43a;
}

.red-glow{
	border: 4px solid #fc121b;
	box-shadow: 0 0 10px #d01115;
}

.yellow-glow{
	border: 4px solid yellow;
	box-shadow: 0 0 10px #d01115;	
}