@import url('https://fonts.googleapis.com/css?family=Asap:400,500,700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: dimgrey;
}

header{
	background-color: white;
	padding: 20px;
    margin: ;
		
}

header > h1{
	color : darkslategray;
	text-align: center;
	font-family: Asap, sans-serif;
}


.score-board {
	margin: 20px auto;
	border: 3px solid white;
	border-radius: 10px;
	text-align: center;
	width: 200px;	
	color: antiquewhite;
	font-size: 46px;
	padding: 15px 20px;
	font-family: Asap, sans-serif;
	position: relative;
}

.badge{
background:  #ff6666;
border-radius: 5px;
font-size: 14px;
padding: 2px 10px;
font-family: Asap, sans-serif;
}

#Spieler-Label{
position: absolute	;
top: 20px;
left: -20px;
}

#Computer-Label{
position: absolute;
top: 20px;
right: -40px;	
}

.Ergebnis {
	font-size: 40px;
	text-align: center;
	font-family: Asap, sans-serif;
	font-weight: bold;
	color: gainsboro;
}

.Wahlen {
	margin-top: 50px;
	text-align: center;
}
.Wahl {
	display: inline-block;
	border: 4px solid white;
	border-radius: 50%;
	padding: 10px;
	margin: 0 15px;
	transition: all 0.3s ease;
}
.Wahl:hover{
	cursor: pointer;
	background: #7c7c50;
	
}
#action-message{
	text-align: center;
	font-size: 30px;
	font-family: Asap, sans-serif;
	font-weight: bold;
	color: gainsboro;
	margin-top: 20px;
	
}



.greenglow {
    border: 4px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
    
}
.redglow {
   border: 4px solid #fc121b;
    box-shadow: 0 0 10px #d01115; 
    
}

.greyglow {
    border: 4px solid #464647;
    box-shadow: 0 0 10px #25292b; 
    
}








