@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Protest+Revolution&display=swap');
body{
	background-color:peachpuff;
}
p{
	font-size: 75px;
	font-family: "Pacifico", cursive;
	text-align: center;
	color: rosybrown;
	}
table{
	border: double 5px darkblue;
	width: 50%;
	font-size: 20px;
	border-collapse:separate ;
	margin: auto;
}
th,td{
	border: solid 2px darksalmon;
	width:25%;
	height: 2cm;
}
tr:hover{
	background-color: lightblue;
}
td:hover{
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	color: darkgoldenrod;
	font-size: 2.5em;
	background-image: url(https://i.gifer.com/4dZN.gif);
}
tr:nth-child(odd){
	background-color: lightcoral;
}
caption{
	font-size: 50px;
	color: lime;
	background: linear-gradient(red, orange, yellow, green, blue, indigo, purple);
}