@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #292C34;
}

header {
	background:white;
	padding: 20px;
}

header > h1 {
	color: #25272E;
	text-align: center;
	font-family: Asap, sans-serif;
}

.score-board {
	border: 3px solid white;
	border-radius: 4px;
	width: 200px;
	margin: 20px auto;
	padding: 15px 20px;
	color: white;
	font-size: 46px;
	text-align: center;
	font-family: Asap, sans-serif;
	position: relative;
}

.badge {
	background: #E2584D;
	color: white;
	font-size: 14px;
	padding: 2px 10px;
	font-family: Asap, sans-serif;
}

#user-label {
	position: absolute;
	top: 30px;
	left: -25px;
}

#computer-label {
	position: absolute;
	top: 30px;
	right: -25px;
}

.result {
	font-size: 40px;
	color: white;
}

.result > p {
	text-align: center;
	font-family: Asap, sans-serif;
	font-weight: bold;
}

.choices {
	text-align: center;
	margin-top: 50px;
}

.choice {
	border: 4px solid white;
	border-radius: 50%;
	display: inline-block;
	height: 100px;
	width: 100px;
	margin: 0 20px;
	padding: 10px;
	transition: all 0.3s ease;
}

.choice > img {
	height: 60px;
	width: auto;
}

.choice:hover {
	cursor: pointer;
	background: #24272E;
}

#action-message {
	text-align: center;
	color: white;
	font-family: Asap, sans-serif;
	font-weight: bold;
	font-size: 20px;
	margin-top: 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;
}

.gray-glow{
	border: 4px solid #464647;
	box-shadow: 0 0 10px #25292b;
}


















