table { 
    border-collapse: collapse;
	border: 1px solid black;
	text-align: center;
	vertical-align: middle;
    margin: auto;
    width: 50%;
    padding: 10px;
    margin-top: 5%;
}
table th{
    padding: 30px;
}
table tr:nth-child(odd) {
    background-color: #fff;
  }
  
table tr:nth-child(even) {
    background-color: #eee;
  }
body{
    font-family: sans-serif;
}
footer {
    clear: both;
    margin: 4px;
    padding: 0.75em;
    color: #333;
    background-color: #ddd; 
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    text-align: center;
    margin-top: 10%;

}
caption {
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	color: #333;
	margin-bottom: 16px;
}
input[type=reset] {
    background-color: lightblue;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type=reset]:hover {
    background-color: lightskyblue;
}
input[type=button] {
    background-color: lightblue;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
input[type=hover]:hover {
    background-color: lightskyblue;
  }
* {
    box-sizing: border-box;
}
input[type=text], select, textarea {
  width: 80%;
  padding: 10px;
  border: 2px solid lightseagreen;
  border-radius: 4px;
  resize: vertical;
}