body {
	background: radial-gradient(#5F8CA3, #183152);
	text-align: center;
	font-family: Tahoma;
	margin: 1%;
	vertical-align: middle;
	border-style: solid;
	border-width: 5%;
	border-color: black;
	border-radius: 15px;
	margin-left: 5%;
	margin-right: 5%;
}
#logo{
	width:70%;
}
wxy{
	width:100px;
	border:1px solid #fff;
	vertical-align:middle;
	display:inline-block;
}
a:hover {
	color: white;
}
textarea {
	width: 60%;
	height: 100px;
}
h1 { color: #a7e8f8; 
	font-family: 'Tahoma', sans-serif; 
	font-size: 28px; 
	font-weight: bold; 
	line-height: 32px; 
	margin: 0 0 24px; 
	text-shadow: 2px 2px 2px #082b34;
}
h2 { color: #a7e8f8; 
	font-family: 'Tahoma', sans-serif; 
	font-size: 22px; 
	font-weight: bold; 
	line-height: 32px; 
	margin: 0 0 24px; 
	text-shadow: 1px 1px 1px #082b34;
}
h3 { color: #a7e8f8; 
	font-family: Tahoma', sans-serif; 
	font-size: 18px; 
	font-weight: bold; 
	line-height: 24px; 
	margin: 0 0 24px; 
	text-shadow: 1px 1px 1px #082b34;
}
p {
    font-family: "Tahoma";
    font-size: 14px;
}
table {
	color: #333;
	font-family: Helvetica, Tahoma, sans-serif;
	font-size: 14px;
	border-collapse:
	collapse; border-spacing: 0;
	width:50%; 
    	margin-left:25%; 
    	margin-right:25%;
}
td, th {
	border: 1px solid transparent; /* No more visible border */
	height: 16px;
	transition: all 0.3s;  /* Simple transition for hover effect */
	text-align: center;
}
th {
	background: #DFDFDF;  /* Darken header a bit */
	font-weight: regular;
}
td {
	background: #FAFAFA;
	text-align: center;
}
/* Cells in even rows (2,4,6...) are one color */
tr:nth-child(even) td { background: #F1F1F1; }  
/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */
tr:nth-child(odd) td { background: #FEFEFE; } 
tr td:hover { background: #666; color: #FFF; } /* Hover cell effect! */