.table1{
	border:1px solid lightblue;
	width:50%;
	height:80px;
	border-collapse:collapse;
}

.table1 th:nth-child(odd){
	background-color:purple;
	height:30px;
}

.table1 th:nth-child(even){
	background-color:turquoise;
}

.table1 th{
	color:white;
}

.table1 tr:nth-child(odd){
	background-color:lightgrey;
}

.table1 td{
	text-align:center;
}

.table2{
	height:160px;
	width:45%;
	border-collapse:collapse;
}

.table2 th{
	background-color:cadetblue;
	color:white;
	height:37px;
}

.table2 th, .table2 td{
	border:2px solid cadetblue;
}

.table2 th:nth-child(1){
	text-align:left;
	padding-left:5px;
}

.table2 td:nth-child(n+2){
	text-align:center;
}

.table2 tr:nth-child(even){
	background-color:lightgrey;
}

.table2 td:nth-child(1){
	padding-left:5px;
}

.table2 td:hover{
	font-weight:bold;
	transform:scale(1.1);
	display:inline-block;
}
