body {
	background-color: #0C0C0C;
	color: #63FA86;
}

h2 { color: pink; }

.gameResult {
	
	color: navy;
	background: linear-gradient(lightblue, aliceblue);
}

.flex-container {
	
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

#controls {
	
	align-self: center;
	vertical-align: center;
}

.playable{
	
	background: linear-gradient(-45DEG, #D6A9F7, #7E2EB9);
	background-size: 400%;
	animation: gradient 3s ease infinite;
	font-weight: bold;
	color: black;
	width: 150px;
	height: 50px;
	font-size: x-large;
}

header,
footer {
	
  box-sizing: border-box;
  width: 95vw;
  text-align: center;
}

@media (max-width: 400px) {
	
	h1 { font-size: 1.5em; }
	
	.playable {
		
		height: 25px;
		font-size: 1em;
	}
}

:disabled {
	
	background-color: darkgray;
	color: linen;
	text-decoration: line-through;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position:  0% 50%;
	}
}
