.post {
    margin-top: 50px;
    margin-left: 50px;
    border: 4px solid #1b0c07;
    border-radius: 10px;
    background-color: #3f3f3f;
}

.author {
    font-size: 26px;
    color: rgba(255,114,38,0.74);
    margin: 20px;

}

.content {
    font-size: 23px;
    color: white;
    margin: 20px 20px 20px 30px;
    white-space: pre-wrap;
}

.comment {
    margin-left: 20px;
    padding: 10px;
    border-left: 4px solid #1b0c07;
    background-color: #292929;
}

.comment .author {
    font-size: 20px;
    color: rgba(255,114,38,1);
}

.comment .content {
    font-size: 18px;
    color: white;
}

.comment_section {
    margin-left: 20px;
}

.comment-input {
    margin-top: 10px;
    margin-left: 30px;
}

.comment-input input,
.comment-input textarea {
    width: 40%;
    padding: 5px;
    margin-bottom: 5px;
    background-color: #292929;
    color: white;
    border: none;
    border-radius: 5px;
    display: block;
}

button {
    background-color: #FF721F;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

button:hover {
    background-color: #FF8938;
}

body {
    background-color: black;
    font-family: Consolas, serif;
}