h2 > span
{
	display: inline-block;
	color: var(--color4);
	margin-top: 20px
}
@keyframes alert
{
	0% {transform: scale(1);}
	50% {transform: scale(1.5);}
	100% {transform: scale(1);}
}
span.emphasis {animation: alert .35s;}
div.play-button {display: flex; justify-content: center;}

h4 > span:nth-child(1) {color: var(--color3);}
h4 > span:nth-child(2) {color: var(--color1);} 
h4 > span:nth-child(3) {color: var(--color2);} 
h4 > span {display: inline-block; margin: 0 10px;	font-size: 20px;}

svg {fill: white; width: 200px; height: 200px; padding: 10px; border: 2px solid black; transition: border-color 250ms;}
main > h4  {position: absolute; top: -40px; right: 0;}
main {height: 89vh;}

label {cursor: pointer;}
input[type=radio] {display: none;}
input[type=submit]:hover, div.play-button > a:hover {transform: scale(1.05);}
input[type=submit], div.play-button > a
{
	display: block;
	width: 150px;
	padding: 10px;
	margin-top: 20px;
	cursor: pointer;
	border-radius: 10px;
	border: 1px solid #666;
	background: black;
	color: white;
	font-size: 25px;
	transition: transform 250ms;
	text-decoration: none;
	text-align: center;
}
div.weapons > *
{
	flex-basis: 30%;
}
div.computer
{
	height: 200px;
	margin-top: 20px;
}

div.weapons.user {margin-top: 75px;}
div.weapons
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 25px auto;
	flex-wrap: wrap;
}
input[type=radio] + label:hover > svg, input[type=radio]:checked + label > svg
{
	border-color: cyan;
	border-radius: 5px;

}
