body {
    background-color: rgb(14, 14, 14);
    color: rgb(231, 231, 231);
    font-family: Arial, sans-serif;
}
/* container to make things looks better on widescreen and ultrawide displays */
.container {
    max-width: 950px;
    max-height: 2000px;
    background-color: rgb(14, 14, 14);
    border-top: 0px;
    margin: auto;
}
/* allows things to come after the floated elements without issues */
.container::after {
    content: "";
    display: table;
    clear: both;
}

h1 {
    text-align: center;
    font: Verdana;
    font-size: 2.5em;
}
hr {
    border: 1px solid rgb(231, 231, 231);
    margin: 40px 0px;
}
p {
    line-height: 1.3;
}

ul {
    line-height: 1.3;
}

footer {
    text-align: center;
    font-size: 0.8em;
    background-color: rgb(20, 20, 20);
    line-height: 1.2;
}

h3 {
    font-style: italic;
}