/* Primary Div, contains the header, body and footer */
.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Header */
.header {
    text-align: center;
    align-content: center;
    padding: 0;
    border-bottom: 1px solid #dee2e6;
}
/* Header Title */
.header-title {
    text-align: center;
    font-size: 2.5em;
    margin: 0;
    color: #343a40;
}
/* Content */
.content {
    margin: 10px 0;
    max-height: 100%;
}
/* Footer */
.footer {
    border-top: 1px solid #dee2e6;
    display: flex;
}
/* Footer Left */
.footer-left {
    margin: 10px 0;
    width: 50%;
    float: left;
}
/* Footer Right */
.footer-right {
    margin: 10px 0;
    width: 50%;
    float: right;
    font-size: 0.8em;
    color: #343a40;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
/* Footer Left Logo Div */
.footer-left-logo {
    float: left;
}
/* Footer Left Contact Info */
.footer-left-contact {
    margin-left: 10px;
    max-width: 100%;
    float: left;
    text-align: left;
    font-size: .8em;
    color: #343a40;
}
