body {
    text-align: center;
    color: white;
    background-color: black;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
}

ul li {
    display: inline-block;
}

ul li a {
    display: block;
    color: white;
    padding: 10px 30px;
    text-decoration: 0;
}

ul li a:hover {
    background-color: darkblue;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headshot {
    float: left;
    margin-top: 25px;
    height: auto;
    border-radius: 50%;
    border: darkblue;
    border-width: 4px;
    border-style: solid;
}

.name {
    margin-left: 100px;
}

.resume {
    height: 450px;
    margin-top: 20px;
}