* {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

a {
    color: #0909b4;
    text-decoration: none;
}

a:hover, #logout-button:hover {
    color: #4040f0;
    text-decoration: underline;
    cursor: pointer;
}

body {
    margin: 0px 200px 0px 200px;
}

#heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main-title {
    display: inline;
}

#main-title a {
    text-decoration: none;
    font-weight: normal;
    color: black;
    font-size: 40px;
}

#user-info {
    float: right;
    font-size: 20px;
}

#logout-form {
    display: inline;
}

#logout-button {
    border: none;
    padding: 0px;
    background: none;
    font-size: 20px;
    color: #0909b4;
}

#form-title {
    font-size: 30px;
    font-weight: normal;
    margin: 10px 0px 10px 0px;
}

.error-box, .errorlist {
    width: fit-content;
    background-color: #d478a3;
    margin: 6px 0px 12px 0px;
    border-radius: 5px;
    padding: 6px;
}

form > div {
    margin: 7px 0px 7px 0px;
}

form ul {
    margin: 1px 0px 2px 0px;
    list-style-type: none;
    padding: 0px;
}

label, input {
    font-size: 18px;
}

.helptext {
    color: #505050;
    font-size: 15px;
}

.post-entry {
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid #808080;
}

.post-entry-title {
    display: block;
    text-decoration: none;
    color: black;
    font-size: 30px;
}

.post-entry-title:hover {
    color: #0909b4;
    text-decoration: underline;
}

.post-entry-tease {
    font-size: 16px;
    margin: 10px 0px 8px 0px;
}

.post-entry-info {
    font-size: 16px;
    color: #505050;
}

#post-title {
    font-size: 35px;
    font-weight: normal;
    margin: 10px 0px 10px 0px;
}

#post-info {
    font-size: 16px;
    margin: 0px 0px 15px 0px;
    color: #505050;
}

#post-body {
    font-size: 18px;
}

#post-comments-heading {
    font-weight: normal;
    font-size: 30px;
}

.comment {
    margin: 14px 0px 14px 0px;
    font-size: 18px;
}

.comment-children {
    margin-left: 2px;
    border-left: 1px solid #303030;
    padding-left: 10px;
}

.comment-author {
    font-weight: bold;
}

.comment-date {
    color: #505050;
}

.comment-reply-link {
    font-size: 15px;
}

.comment-reply-entry {
    width: 400px;
    height: 150px;
}

#add-comment-heading {
    font-weight: normal;
    font-size: 25px;
}

#comment-login-required {
    font-size: 18px;
}