html, body {
    background-color: rgb(40, 40, 40);
    margin: 0;
    padding: 0;
    min-height: 1024px;
}

a:link { color: #ff6b35; text-decoration: none; }
a:visited { color: #ff3f3f; text-decoration: none; }
a:hover { color: #ffbd41; text-decoration: underline; }
a:active { color: #ff4343; text-decoration: underline; }

.page {
    font-size: 14px;
    font-family: Consolas, monospace;
    background-color: black;
    color: white;
    height: 1024px;
    max-width: 800px;
    margin: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.sidebar {
    width: 90px;
    padding: 10px;
    background-color: darkred;
    flex-shrink: 0;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.logoheader {
    font-style: italic;
    font-size: 12px;
    color: grey;
    padding: 10px;
    text-align: center;
}

.ribbon {
    text-align: center;
    background-color: darkred;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.page-content {
    font-size: 16px;
    padding: 10px;
}

.thread-header {
    box-sizing: border-box;
    border: white;
    border-top-style: solid;
    border-bottom-style: solid;
    border-width: 1px;
    width: 100%;
}

.board-post {
    padding: 5px;
    border-bottom-style: solid;
    border-width: 1px;
}

.thread-title {
    margin: 0;
}

.thread-bottom {
    font-size: 12px;
}

a.generic-link {
    color: white;
}


.replies-section {
    width: 100%;
}

