body {
    margin: 0;
    background-color: rgb(10, 60, 10);
    color: aliceblue;
    font-family: Arial, Helvetica, sans-serif;
}

h1, h2 {
    text-align: center;
}

h1 {
    font-size: 3.4em;
}

h2 {
    font-size: 2em;
}

.content {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

.bio {
    flex-basis: 50%;
    font-size: 1.2em;
}

.picture {
    flex-basis: 40%;

    & img {
        max-width: 100%;
    }
}