body    {
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    display: flex;
    background-color: #1f2937;
    align-items: center;
    padding-left: 2%;
    padding-right: 2%;
}

ul  {
    list-style: none;
    padding: 0;
}

.header-left    {
    display: flex;
    color: #f9faf8;
    font-size: 24px;
    width: 50%;
    justify-content: center;
}

.header-right   {
    display: flex;
    flex-shrink: 0;
    width: 50%;
    justify-content: space-evenly;
}

a   {
    text-decoration: none;
    color: #e5e7eb;
    font-size: 18px;
}

.one    {
    display: flex;
    background-color: #1f2937;
    padding: 2%;
}

.one-left   {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
}

.one-left-header    {
    font-size: 48px;
    font-weight: bolder;
    color: #f9faf8;
}

.one-left-body   {
    font-size: 18px;
    color: #e5e7eb;
    margin-top: 10px;
    margin-bottom: 10px;
}

.one-right  {
    margin-left: auto;
    margin-right: auto;
}

#nick-headshot  {
    height: auto;
    width: auto;
    max-width: 300px;
    max-height: 300px;
}

#affiliations   {
    display: flex;
    flex: auto;
    color: #1f2937;
    justify-content: center;
    font-size: 36px;
    font-weight: bolder;
    margin-top: 20px;
}

.card-container {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card   {
    display: flex;
    flex-direction: column;
    border: 5px solid #eee;
    box-shadow: 2px 4px 16px rgba(0,0,0,.06);
    border-radius: 4px;
    width: 330px;
    padding: 8px;
    margin: 8px;
    align-items: center;
    justify-content: center;
    background-color: #e5e7eb;
    color: #1f2937;
}

.text   {
    margin-top: 10px;
}

.three  {
    display: flex;
    background-color: #e5e7eb;
    font-size: 36px;
    color: #1f2937;
    font-style: italic;
    padding: 100px;
}

.footer {
    display: flex;
    background-color: #1F2937;
    color: #e5e7eb;
    align-items: center;
    justify-content: center;
    padding: 20px;
}