body {
	font-family: Cabin Sketch;
	color: #ffffff;
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */
	-o-user-select: none;
	user-select: none;
}

h1 {
	margin: 1em 0 2em;
	text-align: center;
}

ul {
	list-style: none;
}

ul, li {
	padding: 0;
	margin: 0;
}

p[data-action="lose"] {
	display: none;
}

.active {
	opacity: 1 !important;
}

.clearfix {
	width: 100%;
	clear: both;
}

.container {
	width: 540px;
	margin: 0 auto;
}

.simon {
	position: relative;
	float: left;
	margin-right: 2em;	
	width: 300px;
	height: 300px;
}

.red, .blue, .yellow, .green {
	opacity: 0.7;
	height: 300px;
	-webkit-border-radius: 150px 150px 150px 150px;
	border-radius: 150px 150px 150px 150px;
	position: absolute;
	text-indent: 10000px;
}

.red:hover, .blue:hover, .yellow:hover, .green:hover {
	border: 3px solid black
}

.red {
	background: #ff0000;
	clip: rect(0px, 300px, 150px, 150px);
	width: 296px;
}

.blue {
	background: #00a2ff;
	clip: rect(0px, 150px, 150px, 0px);
	width: 300px;
}

.yellow {
	background: #FFFF00;
	clip: rect(150px, 150px, 300px, 0px);
	width: 300px;
}

.green {
	background: #03ff42;
	clip: rect(150px,300px, 300px, 150px);
	width: 296px;
}

.game-info {
	margin-top: 90px;
}

.game-info button {
	color: #ffffff;
	font-family: Cabin Sketch;
	width: 5em;
	box-sizing: border-box;
	font-size: 1.4em;
	-webkit-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
	background: #fc1c1c;
	border: none;
	padding: 0.3em 0.6em;
}

.game-info button:hover {
	-ms-transform: scale(1.1); /* IE 9 */
	-webkit-transform: scale(1.1); /* Safari 3-8 */
	transform: scale(1.1); 
	orizzontal-align: middle;
	background: #07db11
}

.game-options h2 {
	margin-top: 30px;
	margin-bottom: 0;
}

.game-options input[type="radio"] {
	margin-right: 10px;
}

.hoverable:hover {
	cursor: pointer;
}

footer {
	position: absolute;
	right: 30px;
	top: 400px;
	width: 100%;
	clear: both;
	text-align: right;
}	
	
footer button {
	background-color: #00b6fd; 
	border: none; 
	color: white; 
	padding: 4px; 
	text-decoration: none; 
	display: inline-block; 
	font-variant: small-caps; 
	font-size: 10px; 
	border-radius: 6px;
}

totale {
  position: absolute;
  left: 160px;
  top: 255px;
  z-index: 1;
  	color: #ffffff;
	font-family: Arial;
	width: 40px;
	height: 40px;
	font-size: 1.4em;
	font-weight: bold;
	text-align: center;
	-webkit-border-radius: 50px 50px 50px 50px;
	box-sizing: border-box;
	border-radius: 50px;
	background: #000000;
	border: none;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);  
	padding: 8px 5px 5px 3px;
}

.blinking{
    animation:blinkingText 1.2s infinite;
    position: fixed;
 	top: 190px;
 	left: 75px;
  	width: 200px;
  	height: 100px;
  	border: 3px solid #FF0000;
  	border-radius: 25px;
  	font-size: 24px;
  	background-color: #ff0000;
  	font-weight: bold;
  	padding-top: 15px;
  	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  	z-index: 2;  	
}

@keyframes blinkingText{
    0%{     color: #FFffff;    }
    49%{    color: #FFffff; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #FFffff;    }
 }