body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*max-width: 50%;*/
    padding: 16px;
    background-color: lightcyan;
}

#post, input {
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 8px;
}

#post:focus {
    padding: 32px;
}

button {
    margin: 8px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #000000;
    background-color: #fff;
    cursor: pointer;
}

#posts {
    background-color: #007bff;
    width: 70%;
    /*height: 50px;*/
    margin: 16px;
    border-radius: 8px;
    padding: 8px;
}

p {
    display: inline;
    color: white;
}

.tweet-post {
    display: flex;
    justify-content: space-around;
    /*margin: 16px;*/
    padding: 8px;
}

.tweet-comments {
    padding: 8px;
    width: 80%;
    background-color: darkcyan;
    align-self: center;
    border-radius: 8px;
}


.tweet {
    display: flex;
    flex-direction: column;
}