* {
    box-sizing: border-box;
  }

body {
    margin: auto;
    max-width: 720px;
    font-family: "Times New Roman", serif;
    color: black;    
  }

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: black;
    font-weight: 600;
    text-decoration: underline;
}

h1 {
    font-size: 2em;
    margin-top: 2em;
    text-align: center;
    margin: revert;
}

h2 {
    font-size: 1.6em;
    margin-top: 1em;
    text-align: center;
    margin: revert;
    margin-bottom: 0.5em;
    border-bottom: 1px solid black;
}

h3 {
    font-size: 1.2em;
    margin-top: 1.4em;
    margin-bottom: 0.3em;
}

h4 {
    font-size: 1em;
    margin-top: 0.3em;
}

.center {
    text-align: center;
}

.left {
	float: left;
}

.right {
	float: right;
    font-style: italic;

}

.footer {
    left: 0;
    bottom: 0;
    width: 100%;
    color: black;
    text-align: center;
    border-top: 2px solid grey;
    overflow: auto;
}

.column {
    float: left;
    width: 50%;
    padding: 10px;
}
  
.row:after {
    content: "";
    display: table;
    clear: both;
}

.row {
    margin-top: -1.5em;
    margin-bottom: -2.1em;
}
  
@media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
}

@media print {
    .pagebreak {
        clear: both;
        page-break-after: always;
    }
}