<
body {
    font-family: "Garamond", "Times New Roman", serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 5%;
}

h1 {
    font-size: 48px; 
    margin-bottom: 10px;
}

p {
    font-size: 20px;
    margin-top: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
}

td {
    padding-top: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

a {
    color: blue;
    text-decoration: none;
    font-size: 20px;
}

a:hover {
    text-decoration: underline;
}

form input, 
form textarea {
display: block;    /* Makes them stack vertically */
width: 100%;       /* Makes them fill the container width */
margin-bottom: 15px; /* The "magic" spacing you asked for */
padding: 10px;     /* Space inside the boxes so text isn't cramped */
box-sizing: border-box; /* Ensures padding doesn't break the width */
}

form button {
padding: 10px 20px;
cursor: pointer;
}