body {
    margin: 0;
    padding: 0;
    font-family: "Garamond", "Georgia", sans-serif;
    font-weight: 300;
    font-size: 11pt;
    background-color: black;
    position: relative;
}

/* 
dark purple: #522b93
light purple: #8c74b4
*/

img {
    vertical-align: middle;
}

strong {
    font-weight: 500;
    color: #522b93;
}

strong.heavy {
    font-weight: 700;
}

.header {
    background-color: white;
    position: relative;
    height: 8rem;
}

.header #logo {
    height: 6rem;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.nav {
    position: absolute;
    left: 8.5rem;
    bottom: 0;
    margin: 0;
    padding: 0;
    font-size: 1.1em;
}

.nav li {
    display: inline-block;
    padding: 0;
    margin-right: 20px;
}

.nav a,
.nav a:visited
{
    display: inline-block;
    color: #522b93;
    text-decoration: none;
    padding-bottom: 10px;
}

.nav a.active {
    padding-bottom: 5px;
    border-bottom: 5px #522b93 solid;
}

.nav a.active::after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 0.5px white solid;
}

.nav a:hover {
    padding-bottom: 5px;
    border-bottom: 5px #8c74b4 solid;
}

.nav a:hover::after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 0.5px white solid;
}

.tagline {
    position: absolute;
    top: 1.5rem;
    left: 21rem;
    color: #797979;
}

.main-content {
    margin: 1rem 2rem;
    padding: 1rem 2rem;

    background-color: white;
}

.main-content strong {
    font-weight: bold;
    color: black;
}

.main-content h3 {
    margin-top: 3em;
}

p {
    line-height: 1.5em;
}

.footer {
    align-self: flex-end;

    text-align: center;
    padding: 0.5em 2em;
    margin-top: 10rem;
    color: #ddd;
    font-size: 10pt;
    width: 100%;
}

.background {
    position: absolute;
    top: 150px;
    left: 0;
    z-index: -1;
}

.button {
    display: inline-block;
    position: relative;
    text-align: center;
    border: 2px #522b93 solid;
    color: #522b93;
    border-radius: 4px;
    padding: 0.25em 1em;
    margin-top: 0.5em;
    font-weight: 500;
    text-decoration: none;
}

.button.primary {
    background-color: #522b93;
    color: white;
    cursor: pointer;
}

.button:hover {
    border-color: #8c74b4;
}

.button.primary:hover {
    background-color: #8c74b4;
}
