body {
    background-color: #c6c6c6;
    font-family: Monaco, Courier, monospace;
}
main {
    margin: 0 auto;
    padding: 1em;
    color: #000000;
}
article {
    min-height: 55vh;
}
a {
    color: #195691;
}
h1 {
    color: #000000;
    font-size: 2em;
}
input, textarea, button {
    font-family: inherit;
}
.inline {
    display: inline;
}
input[type=submit], button[type=submit] {
    width: inherit;
    margin: 20px 0;
    padding: 0 1em;
}
form input, form textarea {
    height: 2em;
    font-size: 1em;
    width: 80%;
    padding-left: 1em;
}
form textarea {
    height: 4em;
}
form label {
    font-size: 1.2em;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1em;
}
.full-row {
    grid-column: 1 / 3;
}
.width-20-percent {
    width: 20%;
}
.edit-icon {
    background-image: url(/imgs/edit.png);
    background-size: 30px;
    display: block;
    width: 30px;
    height: 30px;
}
.quote {
    position: absolute;
    right: 25px;
    top: 0;
    width: 65%;
    padding: 1em;
    text-align: center;
    font-style: italic;
    background-color: lightgray;
    border-radius: 5px;
    z-index: -1;
}
