html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
    padding: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}


.h1 {
    font-size: 20px;
    color: #333;
    margin: 2rem 0 .5rem;
    font-weight: 500;
}
.h2 {
    font-size: 14px;
    color: #333;
    margin: 2rem 0 .75rem;
}
.subheader {
    font-size: 14px;
    margin: .5rem 0 1rem;
}

.invoice {
    max-width: 700px;
    margin: 18px auto;
}
.table {
    width: 100%;
    color: #222;
}
.table thead td,
.table tfoot td,
.table thead th,
.table tfoot th {
   background-color: #e3e3e3;
}
.table th {
    font-weight: 500;
    color: #333;
}
.table tbody td,
.table tbody th {
   background-color: #f3f3f3;
}
.table td:first-child,
.table th:first-child {
    text-align: left;
}
.table td, .table th {
    padding: 8px 6px;
    font-size: 12px;
    border-top: 1px solid #fff;
    text-align: right;
    max-width: 200px;
}

tbody tr:hover td,
tbody tr:hover th {
    background-color: #e3f2ff;
}