body {
    background-color:#fff;
    color: #555;
    font-family: 'Times New Roman', Times, serif;
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    display: flex;
}

#container {
    /*border: 1px solid #000;*/
    /*margin: 0em 4em;*/
    margin: 0em auto;
    width: 900px;
}

#header {
    /*border: 1px solid #000;*/
    text-align: center;
    margin-bottom: 4em;
}

#body {
    /*border: 1px solid #000;*/
    display: block;
    padding-bottom: 5em;
}

h1 {
    color: #000;
    font-family: 'Times New Roman', Times, serif;
    font: 'Times New Roman';
    font-size: 3em;
    font-weight: 100;
    line-height: 1rem;
    letter-spacing: 2px;
}

p {
    font-size: 1.25em;
    line-height: 140%;
    margin-bottom: 1em;
}

.lastname {
    color: #999;
}

a {
    color: #618cce;
    font-style: italic;
}

ul {
    list-style-type: square;
    margin-bottom: 2.5em;
}

li {
    font-size: 1.25em;
    line-height: 90%;
    margin-bottom: 1em;
}

@media only screen and (max-width: 768px){
    #container {
        margin: 0em 2em;
    }

    p {
        font-size: 1em;
    }

    li {
        font-size: 1em;
        line-height: 120%;
        margin-bottom: 1em;
    }
}