/* game board table */
* {
	margin: auto;
	text-align: center;
}

html {
	background-color: rgba(242, 244, 255, 0.801);
}

h1 {
	font-family: 'Fredoka One', cursive;
	text-transform: uppercase;
	text-align: center;
	font-size: 55px;
	margin-top: 5px;
}

span {
	font-size: 85px;
	color: red;
}

#start-screen {
	margin-bottom: 25px;
}

#start-button {
	border-radius: 5px;
	padding: 3px;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 10px;
	font-size: 15px;
	font-weight: bold;
}

input[type='color'] {
	margin: 10px;
}

#board {
	background-color: rgba(242, 244, 255, 0.801);
	border-radius: 25px;
	padding: 5px;
}

#board td {
	width: 60px;
	height: 60px;
	margin-top: 30px;
	border-radius: 12px;
	border: solid 4px rgb(18, 52, 245);
	background: rgba(24, 51, 204, 0.479);
}

/* column-top is table row of clickable areas for each column */
#column-top td {
	border: solid 1.5px rgb(206, 206, 88);
	border-radius: 50%;
	background-color: lightgoldenrodyellow;
}

#column-top td:hover {
	background-color: paleturquoise;
}

/* pieces are div within game table cells: draw as colored circles */
.piece {
	/* TODO: make into circles */
	width: 85%;
	height: 85%;
	border-radius: 50%;
	margin-top: 5px;
	position: relative;
	animation-name: drop;
	animation-duration: 1000ms;
}

@keyframes drop {
	0% {
		bottom: 300%;
	}
	30% {
		bottom: 15%;
	}
	40% {
		bottom: 0;
	}
}
