body{
	font-family: Arial, sans-serif;
	background-color:#f2f2f2;
	text-align:center;
}

h1{
	color:#2c3e50;
}

h2{
	color:#4CAF50;
}

table{
	margin:auto;
	border-collapse:collapse;
	width:80%;
	background:white;
	box-shadow:0px 0px 10px gray;
}

th, td{
	border:1px solid black;
	padding:10px;
}

th{
	background-color:#4CAF50;
	color:white;
}

/* Zebra stripe rows */
tr:nth-child(even){
	background-color:#f2f2f2;
}

/* Hover effect */
tr:hover{
	background-color:#d6f5d6;
}

/* Button styling */
.button{
	display:inline-block;
	padding:10px 20px;
	background-color:#4CAF50;
	color:white;
	text-decoration:none;
	border-radius:5px;
	margin:15px;
}

.button:hover{
	background-color:#2e7d32;
}