/*Author : Nicolas Flandrois*/
/*Date : Fri 07 Jun 2019 02:31:47 CEST*/ 
@import url('https://fonts.googleapis.com/css?family=Asap:400,400i,500,500i,600,600i,700,700i&display=swap');

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

body {
	background-color: #15133C;
}

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

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

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

.badge {
	background: #E2584D;
	color: white;
	font-size: 14px;
	padding: 2px 10px;
	font-size: 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-weight: bold;
	font-family: Asap, sans-serif;
}

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

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

.choice:hover {
	cursor: pointer;
	background: white;
}

#action-message {
	text-align: center;
	color: white;
	font-family: Asap, sans-serif;
	font-weight: bold;
	font-size: 20px;
	margin-top: 20px;
}

#rule-diagram {
	margin: 15px 0;
	padding: 20px 0;
	display: flex;
	justify-content: center;
}

#sheldon-video {
	margin-left: 15px;
	margin-right: 15px;
	display: flex;
	justify-content: center;
}

#rules {
	margin: 5px 5px;
	padding: 20px 0;
	color: white;
	text-align: center;
	font-family: Asap, sans-serif;
	font-weight: bold;
	font-size: 15px;
}

.green-glow {
	border: 4px solid #4dcc7d;
	box-shadow: 0 0 10px #31b43a;
}

.red-glow {
	border: 4px solid #fc121b;
	box-shadow: 0 0 10px #d01115;
}

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