body {
	background-color: #EBEBEB;
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
}

h1 {
	font-size: 25px;
}

table {
	width: 100%;
	margin: auto;
	margin-top: 20px;
	font-family: 'Arimo', sans-serif;
	font-size: 40px;
    text-align: center;
}

td {
	display: inline-block;
	width: 15%;
	height: 15vw;
	line-height: 80px;
	background-color: #3498DB;
	color: white;
	border: none;
	border-radius: 10%;
	box-shadow: 0 .03em .08em rgba(0,0,0, 0.5);
	margin: 8px;
	transition: background-color 0.2s ease;
}

td:hover {
	cursor: pointer;
	background-color: #9B59B6;
}

.selected {
	background-color: #9B59B6;
}

tr {
	list-style-type: none;
	width: 500px;
}

#selection {
	height: 60px;
	font-size: 1.5em;
}

button {
	border: none;
	background: transparent;
	width: 50px;
	height: 50px;
	margin: .3em;
	border-radius: 50%;
    font-size: 20px;
}

.hover:hover {
	background: #9B59B6;
	color: white;
}

:active {
	outline: none;
}

:focus {
	outline: none;
}

.seed {
	background: #9B59B6;
	color: white;
}

#result {
	padding-top: 20px;
	height: 40px;
	font-size: 1.5em;
}

@media only screen and (min-width: 1000px) {
	td {
		width: 120px;
		height: 120px;
		line-height: 120px;
		font-size: 120px;
	}
	h1 {
		margin-top: 20px;
		font-size: 3em;
	}
	button {
		border: none;
		background: transparent;
		width: 50px;
		height: 50px;
		margin: .3em;
		border-radius: 50%;
		font-size: 40px;
	}
}
