body
{
	background-color:	Plum  ;
}

table
{
	width: 960px;
	height: auto;
	margin: 0px;
	border: 1px solid black;
	text-align: center;
	box-shadow: gray;
}

th
{
	text-align: center;
	color: black;
	text-shadow: lightgray;
	font-size: 20px;
}

td
{
	width: 85px;
	height: 70px;
	border: 3px solid black;
	margin: 0px;
	text-align: center;
	font-family: cursive;
	font-size: 30px;
}

.red
{
	background-color: red;
}

.orange
{
	background-color: orange;
}

.yellow
{
	background-color: yellow;
}

.green
{
	background-color: green;
}

.violet
{
	background-color: violet;
}

.indigo
{
	background-color: indigo;
}

.blue
{
	background-color: blue;
}

.red-rgb
{
	background-color: rgb(255, 0, 0);
}

.orange-rgb
{
	background-color: rgb(255, 150, 0);
}

.yellow-rgb
{
	background-color: rgb(255, 255, 0);
}

.green-rgb
{
	background-color: rgb(0, 120, 0);
}

.violet-rgb
{
	background-color: rgb(255, 100, 255);
}

.indigo-rgb
{
	background-color: rgb(75, 0, 130);
}

.blue-rgb
{
	background-color: rgba(0, 0, 255);
}

.red-hsl
{
	background-color: hsl(0, 100%, 50%);
}

.orange-hsl
{
	background-color: hsl(24 , 100%, 50%);
}

.yellow-hsl
{
	background-color: hsl(60, 100%, 50%);
}

.green-hsl
{
	background-color: hsl(120, 100%, 25%);
}

.violet-hsl
{
	background-color: hsl(300, 100%, 80%);
}

.indigo-hsl
{
	background-color: hsl(275, 100%, 25%);
}

.blue-hsl
{
	background-color: hsl(250, 100%, 50%);
}

.red-hex
{
	background-color: #ff0000;
}

.orange-hex
{
	background-color: #ff751a;
}

.yellow-hex
{
	background-color: #ffff00;
}

.green-hex
{
	background-color: #008000;
}

.violet-hex
{
	background-color: #ff66ea;
}

.indigo-hex
{
	background-color: #4b0082;
}

.blue-hex
{
	background-color: #0000ff;
}

button
{
	border-radius: 30px;
	height: 40px;
	transition: 1s;
}

button:hover
{
	background-color: rgba(255, 156, 98, .7);
	transform: scale(1.3);
}

a
{
	text-decoration: none;
	font-family: courier;
	font-weight: bold;
	color: black;
}