/* Copyright (c) 2017 MIT 6.813/6.831 course staff, all rights reserved.
 * Redistribution of original or derived work requires permission of course staff.
 */

#title {
	font-weight: bold;
	color: rgba(236, 51, 0, 0.856);
  font-family: Georgia, serif;
}

.btn {
	margin:auto;
	border: 1px solid black;
}

.btn-default:hover {background-color: rgba(0, 172, 92, 0.829);}

table, tr, td {
	border-collapse: collapse;
	border: 1px solid black;
}

#board {
	margin: auto;
	width: 320px;
	height: 320px;
	table-layout: fixed;
}

#firstColumn {
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#secondColumn {
	padding: 10px;
}

#thirdColumn {
	padding: 10px;
	margin: auto;
}

.candy-red {
	height: 100%;
	width: 100%;
	color: white;
	font-size: large;
	background-color: red;
}

.candy-green {
	height: 100%;
	width: 100%;
	color: white;
	font-size: large;
	background-color: rgb(0, 119, 0);
}

.candy-orange {
	height: 100%;
	width: 100%;
	color: white;
	font-size: large;
	background-color: rgb(255, 157, 0);
}

.candy-blue {
	height: 100%;
	width: 100%;
	color: white;
	font-size: large;
	background-color: blue;
}

.candy-purple {
	height: 100%;
	width: 100%;
	color: white;
	font-size: large;
	background-color: rgb(155, 5, 185);
}

.candy-yellow {
	height: 100%;
	width: 100%;
	font-size: large;
	color: gray;
	background-color: rgba(255, 234, 0, 0.909);
}

body {
	margin: auto;
	text-align: center;
}