* {
	font-family: 'Orbitron', Sans-serif;
}

body {
	text-align: center;
	background-color: #FFC900;
}

p {
	color: #E84700;
}

h1 {
	color: #E84700;
}

.imgContainer img {
	cursor: pointer;
	border-radius: 50%;
	width: 200px;
	height: 200px;
}

.imgContainer img:hover {
	background-color: gold;
}

.computerPick {
	color: #7E8584;
}

.resultText {
	color: #7E8584;
}

table, td {
	border: 1px solid #6e2606;
	padding: 0;
	margin: auto;
	background-color: orange;
	color: #FFFFFF;
}

table {
	margin-bottom: 20px;
	border-collapse: collapse;
}

td {
	width: 100px;
	height: 25px;
}

.winText {
	margin-top: 50px;
	color: #5BB3B1;
}

.btn {
	background-color: #2143A3;
	width: 100px;
	height: 13px;
	color: white;
	padding: 10px;
	margin: auto;
	margin-top: 10px;
	cursor: pointer;
	border-radius: 5px;
}

.menuBtn {
	font-size: 0.8em;
}

.btn:hover {
	background-color: #006CFA;
}

#helpPopup {
	position: absolute;
	background-color: #faea38;
	width: 400px;
	height: 250px;
	margin: -250px;
	padding: 50px;
	left: 50%;
	top: 50%;
}

#helpPopup p {
	font-size: 0.8em;
	color: #e22f62;
}

.computerImg {
	margin: auto;
	background-color: #eb324c;
	border-radius: 50%;
	width: 200px;
	height: 200px;
}