body
{
    flex-direction: column;
    background-color: #c0d0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px;
    align-items: center;
    display: flex;
}

.header
{
    flex-direction: row;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: blue;
    color: white;
    padding: 0 24px;
    text-align: center;
}
.header-logo
{
    max-width: 90%;
}
.header-login
{
    max-width: 20%;
    background-color: darkblue;
    padding: 0 16px;
    box-shadow: 0 4px 4px rgba(100, 127, 127, 0.5);
    border-radius: 8px;
}

.content
{
    min-width: 70%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 20px 0 8px 0;
}

.hero-entry
{
    align-items: center;
    text-align: center;
    background-color: #676799;
    color: #c0d0ff;
    justify-content: space-between;
    flex-basis: 100%;
    width: 80%;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(100, 127, 127, 0.5);
    margin: 10px 10px;
}


.content-entry
{
    align-items: center;
    background-color: white;
    justify-content: space-between;
    flex-basis: 100%;
    width: 80%;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(100, 127, 127, 0.5);
    margin: 10px 10px;
}

.footer
{
    flex-direction: row;
    width: 100%;
    display: flex;
    align-items: top;
    justify-content: space-between;
    background-color: #5f6f8f;
    color: white;
    padding: 8px 24px;
    text-align: center;
    margin-top: 12px;
}

.footer-container
{
    height: auto;
    min-width: 45%;
    text-align: left;
    padding: 0 16px;
}

.footer-container-heading
{
    font-size: 1.3em;
    font-weight: bold;
}

.footer-container-text
{
    size: 1.1em;
    color: #d0d0c0;
}

.footer-copyright
{
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: top;
    justify-content: space-between;
    background-color: #5f6f8f;
    color: white;
    padding: 8px 24px;
    text-align: center;
}