	@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:400,500,700');
* {
	margin: 0;
	padding: 0;
	box-sizing: border=box;
}
	body {
		background-color: #24272E;
	}
	header {
		background: white;
		padding: 20x;
		
	}
	header > h1 {
		color:#25272E;
		text-align: center;
		font-family: Asap, sans-serif;
	}
	.score-board {
		margin: 20px auto;
		color: white;
		font-size: 46px;
		text-align: center;
		border-radius: 4px;
		border: 3px solid white;
		width: 200px;
		padding: 15px 20px;
		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:-30px;	
	}
	
	.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 {
		display: inline-block;
		border: 4px solid white;
		margin: 0 20px;
		padding: 10px;
		transition: all 0.3s ease;
		
	}
	.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;
		
	}
	
	
	
	
	
	
	
	
	
	
	