/* Style the header*/
#header {
  text-align: center;
  padding: 20px;
  color: #5D3FD3;
  background-color: #F2F2F2;
  font-size: 3rem;
  font-family: 'Courier New', Courier, monospace;
  width: 100%;
}
/*Style post header*/
#postHeader {
    padding: 20px;
    color: #5D3FD3;
    background-color: #F2F2F2;
    font-size: 2rem;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
}
/* Style post section*/
#postSection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
/*Style post title*/
.postTitle {
    padding: 20px;
    color: #5D3FD3;
    background-color: #F2F2F2;
    font-size: 18px;
    font-family: 'Courier New', Courier, monospace;
}
/*Style post content*/
.postDesc {
    padding: 20px;
    color: #000000;
    background-color: #F2F2F2;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}
/*style post image to line up with title*/
.postImg {
    padding: 20px;
    height: auto;
    width: 30rem;
    background-color: #F2F2F2;
}
/*Style the post button*/
.postButton {
    padding: 20px;
    color: #5D3FD3;
    background-color: #F2F2F2;
    font-size: 1rem;
}
/*Style the footer*/
#footer {
    padding: 20px;
    color: #5D3FD3;
    background-color: #F2F2F2;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    position: absolute;
    width: 100%;
    text-align: center;
}