body {
    margin: 0;
    padding: 0;
}

header {
    top: 0;
    left: 0;
    width: calc(100vw - 3.0em);
    padding: 1.5em;
    display: flex;
    position: sticky;;
    background: white;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

header > .logo-image
{
    max-width: 15vw;
    display: inline;
    cursor: pointer;
}

header > .container > * {
    all: unset;
    cursor: pointer;
    display: inline;
    font-size: 1.5em;
    margin-left: 2em
}

section {
    min-height: 100px;
    padding: 1.5em;
    width: calc(100vw - 3.0em);
}

section.blurb > img {
    width: 100%;
}

section > .container {
    left: 50%;
    max-width: 50vw;
    padding: 1.75em;
    position: relative;
    transform: translate(-50%, -20%);
    font-size: 1.5em;

    /*
    background: linear-gradient(0deg, rgb(141, 223, 253), rgb(107, 186, 255));
    border-radius: 1.75em;
    background: #b1ecff;
    box-shadow: 0px 5px 5cap 5px rgba(157, 180, 201, 0.384);
    
    */
}

section.flex-container {
    display: flex;
    flex-direction: row;
}

section.flex-container > * {
    width: 100%;
    padding: 0 0.75em;
}

section.flex-container > *:first-child {
    padding-left: 0;
}

section.flex-container > *:last-child {
    padding-right: 0;
}