@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
h1, h6, p, td {
	font-family: 'Quicksand';
	color: rgb(152, 255, 152);
}

body {
	background-color: black;
}

table {
	border-width: 3px;
	border-color: #98ff98;
	border-style: solid;
	width: 100%;
	height: 100%;
}

div {
	width: 50%;
	height: 500px;
	margin: 0 auto;
	border: 4px solid #98ff98;
}

td {
	border-width: 1px;
	border-color: #98ff98;
	border-style: solid;
	text-align: center;
	font-size: 14px;
	transition: 2s;
	transform: scale(1);
}

td:hover {
	background-color: white; 
	font-size: 54px;
	transition: 0.3s;
	transform: scale(1.6);
	border-radius: 69px;
}
