body, html {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#wrapper {
    width:100%;
    max-width:800px;
    border:0px;
    margin-right:auto;
    margin-left:auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 2rem;
}

#text {
    flex: 1;
    margin-right: 3rem;
}

#text h1 {
    margin: 0;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

#text .subtitle {
    margin: 0.25rem 0 1rem;
    text-align: center;
}

#text .bio {
    margin: 0 0 1rem;
    line-height: 1.6;
}

#text .links {
    text-align: center;
}

a {
    color: #1772d0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#headshot {
    width: 25%;
    flex-shrink: 0;
}

#headshot-img {
    width: 100%;
    object-fit: cover;
}

#content {
    background-color: #dce3e3;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content p {
    padding: 0;
    margin: 0;
}