body {
    background-color: #fff7ec;
    /* height: 100%;               ensures the content fills page */
    margin: 10px;                  /*removes default margin*/
    display: flex;              /*use flexbox on the body to center*/
    flex-direction: column;
    justify-content: center;    /*horizontally cneter*/
    align-items: center;        /*vertically center*/

}

h1 {
    color: #a7e0e9;
}

#postContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    align-items: center;
}

i {
    color: #89687d;
}
