table {
    border-collapse: collapse;
    padding: 5px 10px;    
    margin-left: 30px;
    margin-right: 30px;
    font-family: Georgia, serif;
    font-size: 13pt;
    width: 90%
}

tr:nth-child(even) {background-color: #f2f2f2;}

thead {
    display: table-header-group;
}

th {
    height: 50px;
    border-bottom: 2px solid black;
    padding: 5px 10px;
    background-color: LightGreen;
    color: black;
}

td {
    height: 50px;
    border-bottom: 1px solid black;
    padding: 5px 10px;
    text-align: center;
}

figure {
    display: inline-block;
    margin: 20px; /* adjust as needed */
    text-align: center;
}

figure img {
    width: 100%; 
    text-align: center;
}

img.resize {
    max-width:50%;
    max-height:50%;
}

figure figcaption {
    text-align: center;
    font-size: 18pt;
    font-family: Georgia, serif;
}

h1 {
    margin-left: 30px;
    margin-right: 30px;
    font-family: sans-serif;
    font-size: 350%;
} 

h2 {
    margin-left: 30px;
    margin-right: 30px;
    font-family: sans-serif;
    font-size: 250%;
}

caption {
    margin-bottom: 15px;
    font-family: Georgia, serif;
    font-size: 120%;
    font-weight: bold;
}

p {
    margin: 10px;
    margin-left: 30px;
    margin-right: 30px;
    font-family: Georgia, serif;
    font-size: 13pt;
    line-height: 1.4;
}

input[type=text] {
    margin: 4px;
    padding-left: 5px;
    border-radius: 5px;
    font-family: Courier New, serif;
    font-size: 13pt;
    line-height: 1.4;
    outline: none;
}

input[type=text]:focus {
    background-color: #ffff99;
}

input[type=button] {
    background-color: LightGreen;
    padding: 5px 10px;
    border-style: solid;
    border-color: black;
    border-radius: 8px;
    margin-top: 15pt;
    font-family: Georgia, serif;
    font-size: 13pt;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}